fix: use -p cli option for next dev

This commit is contained in:
nsylke
2023-08-23 17:56:12 -05:00
parent 0d8532ab6d
commit f76bf4c2c7
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
"private": true,
"license": "AGPL-3.0",
"scripts": {
"dev": "PORT=3001 next dev",
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start",
"lint": "next lint",

View File

@ -4,7 +4,7 @@
"private": true,
"license": "AGPL-3.0",
"scripts": {
"dev": "PORT=3000 next dev",
"dev": "next dev -p 3000",
"build": "next build",
"start": "next start",
"lint": "next lint",