Add missing routes for sveltekit 1

This commit is contained in:
nemunaire 2024-06-13 19:58:38 +02:00
commit 6f495f4fe1
2 changed files with 8 additions and 0 deletions

View file

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