radames's picture
bump sveltkit and svelte
246efdb
raw
history blame
367 Bytes
import { sveltekit } from "@sveltejs/kit/vite";
import tailwindcss from "@tailwindcss/vite";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [tailwindcss(), sveltekit()],
server: {
proxy: {
"/api": "http://localhost:7860",
"/api/ws": {
target: "ws://localhost:7860",
ws: true,
},
},
},
});