Change port to 5000

This commit is contained in:
Fuhrmann 2023-10-19 11:09:48 +02:00
parent 2c0381a362
commit ddb8411e1f

View File

@ -3,9 +3,9 @@
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run copy && next dev",
"dev": "npm run copy && next dev -p 5000",
"build": "npm run copy && next build",
"start": "next start",
"start": "next start -p 5000",
"lint": "next lint",
"copy": "ncp ./node_modules/@arcgis/core/assets ./public/assets"
},