e-commerce deploy fails on Vercel
mdubus opened this issue · 1 comments
mdubus commented
FYI @shivaylamba
The deployment of the e-commerce demo fails on Vercel. See here.
In order to fix the issue, you need to add "sourceType": "module"
in the .eslintrc.json
file:
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 12
},
But then, it raises other errors because eslint is still not configured properly:
In order to fix it, you need to do the following:
- Addition of
next
in theextends
list of the.eslintrc.json
file:
"extends": ["next", "eslint:recommended", "plugin:prettier/recommended"],
- Update of the eslint scripts in the
package.json
file in order to lint theJSX
files and not only theJS
ones:
"lint": "eslint --ext .js,.jsx .",
"lint:fix": "eslint --ext .js,.jsx . --fix",
Then the linter should finally run correctly and raise a lot of errors in the JSX
files:
By running npm run lint:fix
it should fix the majority of these linter issues (quotes, semicolons, ...)
Only 2 warning are still present and can be fixed manually:
shivaylamba commented
Thank you @mdubus I have made the necessary changes in the PR.