diff --git a/.gitignore b/.gitignore index e760da5b1f..5fa933f85e 100644 --- a/.gitignore +++ b/.gitignore @@ -45,3 +45,4 @@ Thumbs.db .history .next +out/ diff --git a/next.config.js b/next.config.js index ae887958d3..3d3bc9990d 100644 --- a/next.config.js +++ b/next.config.js @@ -2,6 +2,6 @@ const nextConfig = { reactStrictMode: true, swcMinify: true, -} +}; -module.exports = nextConfig +module.exports = nextConfig; diff --git a/package.json b/package.json index 2afbe0cd7c..35caa0df78 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "scripts": { "dev": "next dev", "build": "next build", + "export": "next export", "start": "next start", "lint": "next lint" },