Configure Next.js settings and add export script to package.json

This commit is contained in:
Alaguraj0361 2026-06-09 13:29:11 +05:30
parent 33a513f40e
commit a18a9c442e
2 changed files with 6 additions and 1 deletions

View File

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

View File

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