Refactoring: made the server run on its local port.

This commit is contained in:
Yohan Boujon 2025-04-29 23:20:16 +02:00
parent 293752db2c
commit f9e9ad1297
2 changed files with 5 additions and 1 deletions

View file

@ -2,5 +2,9 @@ import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [sveltekit()]
plugins: [sveltekit()],
server: {
host: '0.0.0.0',
port: 5125,
},
});