2
0
mirror of https://github.com/tenrok/BBob.git synced 2026-06-05 16:42:27 +03:00
Files
bbob/examples/svelte-vite/vite.config.ts
T
Nikolay Kost 0beab56d7f feat: svelte 4 example (#244)
* fix: svelte example

* fix: reactivity
2024-07-16 03:03:41 +02:00

8 lines
177 B
TypeScript

import { defineConfig } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [svelte()],
})