diff --git a/next.config.js b/next.config.js index a551532..e75c7f3 100644 --- a/next.config.js +++ b/next.config.js @@ -1,8 +1,9 @@ /** @type {import('next').NextConfig} */ -module.exports = { +const nextConfig = { output: 'export', distDir: 'dist', reactStrictMode: false, - trailingSlash: false - } - + trailingSlash: true +} + +module.exports = nextConfig