You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tauri-plugins-workspace/plugins/tauri-plugin-revenue-cat/examples/tauri-app/vite.config.js

25 lines
623 B

import { defineConfig } from "vite";
import { svelte } from "@sveltejs/vite-plugin-svelte";
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 || false,
port: 1420,
strictPort: true,
hmr: host ? {
protocol: 'ws',
host,
port: 1421
} : undefined,
},
})