12345678910111213141516171819202122232425 |
- import { defineConfig } from "vite";
- import { svelte } from "@sveltejs/vite-plugin-svelte";
- import { internalIpV4Sync } from 'internal-ip';
- const host = process.env.TAURI_DEV_HOST;
- // https://vitejs.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 ? "0.0.0.0" : false,
- port: 1420,
- strictPort: true,
- hmr: host ? {
- protocol: 'ws',
- host: internalIpV4Sync(),
- port: 1421
- } : undefined,
- },
- })
|