next/babel error fix

This commit is contained in:
ClarkLach
2024-04-05 22:55:00 -04:00
parent 75a79711aa
commit 3aad970fd6
2 changed files with 6 additions and 7 deletions
+5
View File
@@ -0,0 +1,5 @@
{
"presets": ["next/babel"],
"plugins": []
}
+1 -7
View File
@@ -1,9 +1,3 @@
{
"extends": "next/core-web-vitals",
"rules": {
"no-unused-vars": ["warn", { "vars": "all", "args": "after-used", "ignoreRestSiblings": false }],
"jsx-a11y/alt-text": "off",
"@next/next/no-img-element": "off",
"no-console": 1
}
"extends": ["next/babel","next/core-web-vitals"]
}