feat: initialize the wails project

This commit is contained in:
2023-08-25 20:33:11 +00:00
parent 18df5de5a3
commit 7ac2d71b4d
19 changed files with 610 additions and 2 deletions

7
frontend/vite.config.js Normal file
View File

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