Allow network access, enable svelte inspector

This commit is contained in:
ZXY101
2023-08-01 13:34:09 +02:00
parent 7c3441c87d
commit 9395a61449
2 changed files with 8 additions and 1 deletions

View File

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