Specific Build/Run Errors in Vue Web Game Project #14189
Answered
by
zhi-x-yang
fatcat006-rgb
asked this question in
Help/Questions
|
Hi, Commands: Error Output: And during build: Does anyone know how to fix these module resolution issues? Thanks! |
Answered by
zhi-x-yang
Dec 10, 2025
Replies: 1 comment
|
The error indicates that Vite can't resolve the file at @/components/GameBoard.vue. |
0 replies
Answer selected by
fatcat006-rgb
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The error indicates that Vite can't resolve the file at @/components/GameBoard.vue.
Please verify that:
The file actually exists in src/components/.
The filename matches exactly, including capitalization.
Your vite.config.js includes the correct alias:
resolve: { alias: { '@': '/src' } }Fixing the path or alias should resolve both errors.