chore: init
This commit is contained in:
24
examples/tauri-app/vite.config.js
Normal file
24
examples/tauri-app/vite.config.js
Normal file
@ -0,0 +1,24 @@
|
||||
import { defineConfig } from "vite";
|
||||
import { svelte } from "@sveltejs/vite-plugin-svelte";
|
||||
|
||||
const host = process.env.TAURI_DEV_HOST;
|
||||
|
||||
// https://vite.dev/config/
|
||||
export default defineConfig({
|
||||
plugins: [svelte()],
|
||||
|
||||
// Vite options tailored for Tauri development and only applied in `tauri dev` or `tauri build`
|
||||
// prevent Vite from obscuring rust errors
|
||||
clearScreen: false,
|
||||
// tauri expects a fixed port, fail if that port is not available
|
||||
server: {
|
||||
host: host || false,
|
||||
port: 1420,
|
||||
strictPort: true,
|
||||
hmr: host ? {
|
||||
protocol: 'ws',
|
||||
host,
|
||||
port: 1421
|
||||
} : undefined,
|
||||
},
|
||||
})
|
Reference in New Issue
Block a user