From f76bf4c2c78e92f0b3eeca5c9a83c4c1737bae26 Mon Sep 17 00:00:00 2001 From: nsylke Date: Wed, 23 Aug 2023 17:56:12 -0500 Subject: [PATCH] fix: use -p cli option for next dev --- apps/marketing/package.json | 2 +- apps/web/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/marketing/package.json b/apps/marketing/package.json index c3898bf0a..2aacc5ca8 100644 --- a/apps/marketing/package.json +++ b/apps/marketing/package.json @@ -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", diff --git a/apps/web/package.json b/apps/web/package.json index b7f8da47a..22e00b0c0 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -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",