diff --git a/next.config.ts b/next.config.ts index e9ffa30..9ac2d16 100644 --- a/next.config.ts +++ b/next.config.ts @@ -2,6 +2,11 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ + output: "export", // keep: needed for next export + trailingSlash: true, + images: { + unoptimized: true, // ✅ needed + }, }; export default nextConfig;