feat: initialize product-site app with Next.js, i18n routing, and custom brand configurations
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import nextVitals from "eslint-config-next/core-web-vitals";
|
||||
import nextTs from "eslint-config-next/typescript";
|
||||
|
||||
export const nextjsConfig = [
|
||||
...nextVitals,
|
||||
...nextTs,
|
||||
{
|
||||
ignores: [
|
||||
".next/**",
|
||||
"out/**",
|
||||
"build/**",
|
||||
"next-env.d.ts",
|
||||
]
|
||||
},
|
||||
{
|
||||
rules: {
|
||||
"@typescript-eslint/no-explicit-any": "off",
|
||||
"@next/next/no-img-element": "off"
|
||||
}
|
||||
}
|
||||
];
|
||||
Reference in New Issue
Block a user