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
```
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

View File

@ -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
}
})