Skip to content

Conversation

@abhay-raj19
Copy link

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 .

Hyper.fixed.mp4

@abhay-raj19
Copy link
Author

#341 Fixed Up

@abhay-raj19
Copy link
Author

Builds are now successfully Passing up .

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant