Hanzo Dev commited on
Commit
1efda85
·
1 Parent(s): d675ae7

Fix start script to bind to all interfaces

Browse files
Files changed (1) hide show
  1. package.json +1 -1
package.json CHANGED
@@ -5,7 +5,7 @@
5
  "scripts": {
6
  "dev": "next dev",
7
  "build": "next build",
8
- "start": "next start",
9
  "lint": "next lint",
10
  "ci": "npm ci --legacy-peer-deps"
11
  },
 
5
  "scripts": {
6
  "dev": "next dev",
7
  "build": "next build",
8
+ "start": "next start -H 0.0.0.0 -p 3000",
9
  "lint": "next lint",
10
  "ci": "npm ci --legacy-peer-deps"
11
  },