diff --git a/next.config.mjs b/next.config.mjs index 54461bd..1050f24 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,6 +1,9 @@ /** @type {import('next').NextConfig} */ const nextConfig = { - output: "export" + output: "export", + images: { + unoptimized: true + } }; export default nextConfig;