diff --git a/next.config.js b/next.config.js index efca766..fe653ae 100644 --- a/next.config.js +++ b/next.config.js @@ -4,11 +4,15 @@ const withBundleAnalyzer = require('@next/bundle-analyzer')({ /** @type {import('next').NextConfig} */ const nextConfig = { + output: 'export', eslint: { // Warning: This allows production builds to successfully complete even if // your project has ESLint errors. ignoreDuringBuilds: true, }, + images: { + unoptimized: true, + }, }