serve a static website from your pds
at main 195 B view raw
1import { sveltekit } from "@sveltejs/kit/vite"; 2import { defineConfig } from "vite"; 3 4export default defineConfig({ 5 plugins: [sveltekit()], 6 server: { host: "0.0.0.0", allowedHosts: true }, 7});