ui: Fix HMR

This commit is contained in:
nemunaire 2023-09-19 11:10:04 +02:00
parent 3a03b6fbbc
commit 6367d5cfdb
1 changed files with 6 additions and 0 deletions

View File

@ -2,6 +2,12 @@ import { sveltekit } from '@sveltejs/kit/vite';
import type { UserConfig } from 'vite';
const config: UserConfig = {
server: {
hmr: {
port: 10000
}
},
plugins: [sveltekit()]
};