📲 Adds initial svelte app with tailwind and typescript

This commit is contained in:
Rune Harlyk
2023-05-10 21:22:28 +02:00
parent 7593296a92
commit 07a99a6248
25 changed files with 4357 additions and 5 deletions
+12
View File
@@ -0,0 +1,12 @@
import { defineConfig } from 'vite';
import { svelte } from '@sveltejs/vite-plugin-svelte';
import { viteSingleFile } from 'vite-plugin-singlefile';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [svelte(), viteSingleFile()],
build: {
outDir: '../data',
emptyOutDir: true
}
});