Specific Build/Run Errors in Vue Web Game Project #14189
Answered
by
elias-winberg
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! |
Beta Was this translation helpful? Give feedback.
Answered by
elias-winberg
Dec 10, 2025
Replies: 1 comment
-
|
The error indicates that Vite can't resolve the file at @/components/GameBoard.vue. |
Beta Was this translation helpful? Give feedback.
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.