chess icon indicating copy to clipboard operation
chess copied to clipboard

Fixes:#341/builds are now being passing up

Open abhay-raj19 opened this issue 8 months ago • 2 comments

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

abhay-raj19 avatar May 25 '24 20:05 abhay-raj19