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