11 lines
247 B
TypeScript
11 lines
247 B
TypeScript
import { defineConfig } from "vite";
|
|
import { svelte } from "@sveltejs/vite-plugin-svelte";
|
|
import { themePlugin } from "./theming";
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
themePlugin(),
|
|
svelte(),
|
|
],
|
|
});
|