Run dev on port 5173

This commit is contained in:
Tom Butcher 2025-11-17 18:46:12 +00:00
parent caa67cd111
commit b9271d999f
2 changed files with 4 additions and 3 deletions

View File

@ -48,7 +48,7 @@ To start the development server:
npm run dev 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 ### Building for Production

View File

@ -11,8 +11,9 @@ export default defineConfig({
outDir: 'build' outDir: 'build'
}, },
server: { server: {
allowedHosts: ['dev.tombutcher.work'],
host: '0.0.0.0', host: '0.0.0.0',
open: false, port: 5173,
port: 3000 open: false
} }
}) })