mirror of
https://github.com/KevinMidboe/patlite-tower-lights-controller.git
synced 2025-10-29 09:40:29 +00:00
9 lines
187 B
JavaScript
9 lines
187 B
JavaScript
import { defineConfig } from "vite";
|
|
import { svelte } from "@sveltejs/vite-plugin-svelte";
|
|
|
|
export default defineConfig({
|
|
plugins: [svelte()],
|
|
root: "./",
|
|
publicDir: "public",
|
|
});
|