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