Build step for the theme file

This commit is contained in:
Ariadna 2025-05-15 01:35:50 -04:00
parent 4e1faff7e3
commit e49ce63db9
Signed by: ari
SSH key fingerprint: SHA256:j4xpQafvRcIH4rwZqM5aREIogWsCjyYohia7vH0+uZY
3 changed files with 13 additions and 88 deletions

View file

@ -1,7 +1,11 @@
import { defineConfig } from "vite";
import { svelte } from "@sveltejs/vite-plugin-svelte";
import { themePlugin } from "./theming";
// https://vite.dev/config/
export default defineConfig({
plugins: [svelte()],
plugins: [
themePlugin(),
svelte(),
],
});