chess
chess copied to clipboard
Fixes:#341/builds are now being passing up
While the complete build was failing apart just by running npm run build
What was causing up the issue ?
-> while I was running up the npm run build
inside the apps/frontend/
for compiling up the typescript code the tsc command was failing up due to the incorrect imports in package.json.
-> Corrected up the tsconfig
"paths": {
"@/*": ["./*",./public/*"]
},
`
to
"paths": {
"@/*": ["./*","src/*", "./public/*"]
},
-> and removed up the const user = useUser();
from src/app.tsx in frontend .
https://github.com/code100x/chess/assets/96302417/1cc12cf4-d5cb-474a-b54b-22284c569f7d