Added Svelte in a Nix devshell

This commit is contained in:
2026-05-07 22:16:26 +02:00
parent 5c57b56fa5
commit a335736ccf
19 changed files with 773 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import { defineConfig } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
// https://vite.dev/config/
export default defineConfig({
plugins: [svelte()],
})