feat: initialize product-site app with Next.js, i18n routing, and custom brand configurations

This commit is contained in:
Firman Ramdhani
2026-07-29 15:29:35 +07:00
parent fcea8f221b
commit eb63a48047
32 changed files with 5829 additions and 196 deletions
+21
View File
@@ -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"
}
}
];