inner pages updated

This commit is contained in:
Selvi 2026-06-10 19:12:12 +05:30
commit 0a02a2fa82
2 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,10 @@
/** @type {import('next').NextConfig} */ /** @type {import('next').NextConfig} */
const nextConfig = { const nextConfig = {
/* config options here */ output: 'export',
trailingSlash: true,
images: {
unoptimized: true, // ✅ needed
},
}; };
export default nextConfig; export default nextConfig;

View File

@ -6,6 +6,7 @@
"dev": "next dev", "dev": "next dev",
"build": "next build", "build": "next build",
"start": "next start", "start": "next start",
"export": "next build",
"lint": "eslint" "lint": "eslint"
}, },
"dependencies": { "dependencies": {