diff --git a/next.config.js b/next.config.js index 0d81a2c..da7bf37 100644 --- a/next.config.js +++ b/next.config.js @@ -1,5 +1,6 @@ /** @type {import('next').NextConfig} */ const nextConfig = { + output: 'export', // Add this line for static HTML export images: { remotePatterns: [ { @@ -14,6 +15,7 @@ const nextConfig = { }, ], }, + // Since you're deploying to a custom domain at the root, no need for basePath or assetPrefix here }; module.exports = nextConfig;