From 1afe05a30b8b05be53bd8cd1ef0dbc0a76223def Mon Sep 17 00:00:00 2001 From: AkiraKunishige Date: Mon, 10 Aug 2026 19:54:15 +0900 Subject: [PATCH] Use port 3004 for the CustomExitScreen dev server CustomExitScreen was the only template serving on 5173; the other ten use 3004. The root README documents the local plugin flow as running on http://localhost:3004 and the metatell_client snippet points its remote entry there, so CustomExitScreen needed the port overridden by hand to be loaded locally. strictPort is already set, so a clash surfaces as an error rather than silently moving to another port. Co-Authored-By: Claude Opus 5 --- CustomExitScreen/README.md | 2 +- CustomExitScreen/vite.config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CustomExitScreen/README.md b/CustomExitScreen/README.md index 2fc7c86..9ab1cf0 100644 --- a/CustomExitScreen/README.md +++ b/CustomExitScreen/README.md @@ -13,7 +13,7 @@ npm install npm run dev ``` -The dev server runs at `http://localhost:5173`. +The dev server runs at `http://localhost:3004`. ## Build diff --git a/CustomExitScreen/vite.config.ts b/CustomExitScreen/vite.config.ts index 85f0075..5dcff08 100644 --- a/CustomExitScreen/vite.config.ts +++ b/CustomExitScreen/vite.config.ts @@ -37,7 +37,7 @@ export default defineConfig(({ command }) => ({ emptyOutDir: true }, server: { - port: 5173, + port: 3004, strictPort: true, headers: { "Access-Control-Allow-Origin": "*"