diff --git a/next.config.mjs b/next.config.mjs index debd939..9d7c247 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,6 +1,8 @@ -/** @type {import('next').NextConfig} */ +/** + * @type {import('next').NextConfig} + */ const nextConfig = { - output: 'export', + output: "export", }; -export default nextConfig; +module.exports = nextConfig;