Initial commit of version 0.2.0
This commit is contained in:
parent
86fc06b877
commit
dfb04462f3
108 changed files with 16167 additions and 80 deletions
14
app/vite.config.ts
Normal file
14
app/vite.config.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import { defineConfig } from 'vite';
|
||||
import { svelte } from '@sveltejs/vite-plugin-svelte';
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [svelte()],
|
||||
clearScreen: false,
|
||||
server: {
|
||||
port: 1420,
|
||||
strictPort: true,
|
||||
host: '127.0.0.1'
|
||||
},
|
||||
envPrefix: ['VITE_', 'TAURI_ENV_*'],
|
||||
build: { target: 'es2022' }
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue