diff --git a/next.config.mjs b/next.config.mjs index 4678774..ded3b24 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,4 +1,10 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {}; +const nextConfig = { + output: "export", + trailingSlash: true, + images: { + unoptimized: true, + }, +}; export default nextConfig;