Skip to content

Commit

Permalink
fix: changed the script command to use host to run server
Browse files Browse the repository at this point in the history
  • Loading branch information
codechirag123 committed Dec 17, 2024
1 parent 8035132 commit 3fc4697
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/backoffice-v2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"start": "vite",
"dev": "vite",
"build": "cross-env NODE_OPTIONS=--max-old-space-size=32768 vite build",
"prod:next": "vite build && vite",
"prod:next": "vite build && vite --host",
"test": "vitest run --passWithNoTests",
"test:unit": "vitest run --passWithNoTests",
"test:e2e": "playwright test",
Expand Down
2 changes: 1 addition & 1 deletion apps/kyb-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"dev": "vite",
"start": "vite",
"build": "tsc && vite build",
"prod:next": "vite build && vite",
"prod:next": "vite build && vite --host",
"lint": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
Expand Down
2 changes: 1 addition & 1 deletion apps/workflows-dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"dev": "vite --host",
"start": "vite",
"build": "tsc && vite build",
"prod:next": "vite build && vite",
"prod:next": "vite build && vite --host",
"lint": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
Expand Down

0 comments on commit 3fc4697

Please sign in to comment.