mirror of
https://github.com/ivabus/gui
synced 2025-04-24 06:27:09 +03:00
8 lines
169 B
TypeScript
8 lines
169 B
TypeScript
import { sveltekit } from "@sveltejs/kit/vite";
|
|
import type { UserConfig } from "vite";
|
|
|
|
const config: UserConfig = {
|
|
plugins: [sveltekit()]
|
|
};
|
|
|
|
export default config;
|