From b9271d999fd45db6bb6f841881ae835a3fd2f1e7 Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Mon, 17 Nov 2025 18:46:12 +0000 Subject: [PATCH] Run dev on port 5173 --- README.md | 2 +- vite.config.js | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b114de1..fb6544f 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ To start the development server: npm run dev ``` -The app will be available at [http://localhost:3000](http://localhost:3000). +The app will be available at [http://localhost:5173](http://localhost:5173). ### Building for Production diff --git a/vite.config.js b/vite.config.js index 3836525..e3fac35 100644 --- a/vite.config.js +++ b/vite.config.js @@ -11,8 +11,9 @@ export default defineConfig({ outDir: 'build' }, server: { + allowedHosts: ['dev.tombutcher.work'], host: '0.0.0.0', - open: false, - port: 3000 + port: 5173, + open: false } })