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