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
+26
View File
@@ -0,0 +1,26 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./base.json",
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
]
},
"exclude": ["node_modules"]
}