From e15246a51529a7ef2619c15559808b89f1b0ea83 Mon Sep 17 00:00:00 2001 From: stefandsl Date: Tue, 26 May 2026 13:29:51 +0200 Subject: [PATCH] chore(ui): align dev server port with production (3010) Co-Authored-By: Claude Opus 4.7 (1M context) --- ui/AGENTS.md | 2 +- ui/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/AGENTS.md b/ui/AGENTS.md index 83f818bf..dad34c5b 100644 --- a/ui/AGENTS.md +++ b/ui/AGENTS.md @@ -75,5 +75,5 @@ The auth interceptor (which attaches the Bearer token) is only registered once a ```bash npm install -npm run dev # Runs on port 3000 +npm run dev # Runs on port 3010 ``` diff --git a/ui/package.json b/ui/package.json index 1e4f7c53..e4ecae7f 100644 --- a/ui/package.json +++ b/ui/package.json @@ -3,7 +3,7 @@ "version": "1.31.0", "private": true, "scripts": { - "dev": "cross-env NODE_OPTIONS=--enable-source-maps next dev --turbopack", + "dev": "cross-env NODE_OPTIONS=--enable-source-maps next dev --turbopack -p 3010", "build": "next build", "start": "next start", "lint": "next lint",