chore: clean

This commit is contained in:
lawvs 2022-09-23 11:43:32 +08:00
parent 7a7afd4daf
commit 30596d182c
3 changed files with 4 additions and 2 deletions

1
.gitignore vendored
View File

@ -45,3 +45,4 @@ Thumbs.db
.history
.next
out/

View File

@ -2,6 +2,6 @@
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
}
};
module.exports = nextConfig
module.exports = nextConfig;

View File

@ -5,6 +5,7 @@
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"lint": "next lint"
},