When I am uploading my nextjs app to vercel I am getting this error please help me solve it

This is an ESLint error, you can disable this specific check.
Checkout my eslint config, I disabled this rule.
//.eslintrc.js
module.exports = {
env: {
node: true,
browser: true,
es2021: true,
},
extends: [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@next/next/recommended",
],
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 12,
sourceType: "module",
},
plugins: ["react"],
rules: {
"react/no-unknown-property": ["error", { ignore: ["jsx"] }],
},
globals: {
React: "writable",
},
settings: {
react: {
version: "detect",
},
},
};
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With