From 30596d182c20631fcb0eb86cbfa8c406a37dd06f Mon Sep 17 00:00:00 2001 From: lawvs <18554747+lawvs@users.noreply.github.com> Date: Fri, 23 Sep 2022 11:43:32 +0800 Subject: [PATCH] chore: clean --- .gitignore | 1 + next.config.js | 4 ++-- package.json | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e760da5b1..5fa933f85 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 ae887958d..3d3bc9990 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 2afbe0cd7..35caa0df7 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" },