mirror of
https://github.com/furyhawk/bus_sg_app.git
synced 2026-07-20 09:47:58 +00:00
10 lines
202 B
JavaScript
10 lines
202 B
JavaScript
import { sveltekit } from "@sveltejs/kit/vite";
|
|
import { defineConfig } from "vite";
|
|
|
|
export default defineConfig({
|
|
plugins: [sveltekit()],
|
|
preview: {
|
|
allowedHosts: ["bus.furyhawk.lol"]
|
|
}
|
|
});
|