Skip to content

Commit

Permalink
chore: build 관련 명령어 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
JongMany committed Oct 21, 2024
1 parent 5ad2a89 commit f45be69
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
"scripts": {
"dev": "next dev",
"build": "next build",
"build:dev": "NEXT_NODE_ENV=development next build",
"build:prod": "NEXT_NODE_ENV=production next build",
"start:dev": "NEXT_NODE_ENV=development next start",
"start:prod": "NEXT_NODE_ENV=production next start",
"test": "vitest --watch --passWithNoTests --coverage",
"test:ci": "vitest --ci --passWithNoTests",
"start": "next start",
"lint": "next lint"
},
Expand Down

0 comments on commit f45be69

Please sign in to comment.