feat: add svelte

This commit is contained in:
Mauricio Siu
2024-06-30 19:57:48 -06:00
parent 415c719b93
commit 0bb2a0b1e3
16 changed files with 286 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import { defineConfig } from "vite";
import { svelte } from "@sveltejs/vite-plugin-svelte";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [svelte()],
preview: {
port: 3000,
host: true,
},
});