diff --git a/next.config.mjs b/next.config.mjs index b108e1a..22faeaa 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,6 +1,10 @@ /** @type {import('next').NextConfig} */ const nextConfig = { - /* config options here */ + output: 'export', + trailingSlash: true, + images: { + unoptimized: true, // ✅ needed + }, }; export default nextConfig; diff --git a/package.json b/package.json index 0679a66..136752f 100644 --- a/package.json +++ b/package.json @@ -6,6 +6,7 @@ "dev": "next dev", "build": "next build", "start": "next start", + "export": "next build", "lint": "eslint" }, "dependencies": {