Skip to content

Commit

Permalink
Adjust build commands to use "next start"
Browse files Browse the repository at this point in the history
  • Loading branch information
joshua-rdrgz committed Apr 2, 2024
1 parent 76da7ea commit c430cb3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"private": true,
"scripts": {
"dev": "next dev",
"build:dev": "env-cmd -f .env.development next build && next export",
"build:stage": "env-cmd -f .env.staging next build && next export",
"build:prod": "env-cmd -f .env.production next build && next export",
"build:ui": "env-cmd -f .env.ui next build && next export",
"build:dev": "env-cmd -f .env.development next build && next start",
"build:stage": "env-cmd -f .env.staging next build && next start",
"build:prod": "env-cmd -f .env.production next build && next start",
"build:ui": "env-cmd -f .env.ui next build && next start",
"lint": "next lint",
"check-formatting": "prettier --check .",
"prepare": "cd ${HOOKS_DIR:-..} && husky install frontend/.husky",
Expand Down

0 comments on commit c430cb3

Please sign in to comment.