mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 02:18:47 +00:00
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
import tailwindcss from "@tailwindcss/vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import { defineConfig } from "vite";
|
|
import flowbiteReact from "flowbite-react/plugin/vite";
|
|
import typescript from "vite-plugin-typescript";
|
|
import { execSync } from "child_process";
|
|
|
|
const host = process.env.TAURI_DEV_HOST;
|
|
const gitVersion =
|
|
process.env.GITHUB_SHA ?? execSync("git rev-parse --short HEAD").toString();
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react(), flowbiteReact(), tailwindcss(), typescript()],
|
|
|
|
define: {
|
|
// mark:next-gui-version
|
|
__APP_VERSION__: JSON.stringify("1.5.9"),
|
|
__GIT_VERSION__: JSON.stringify(gitVersion),
|
|
},
|
|
|
|
// Vite options tailored for Tauri development and only applied in `tauri dev` or `tauri build`
|
|
//
|
|
// 1. prevent vite from obscuring rust errors
|
|
clearScreen: false,
|
|
// 2. tauri expects a fixed port, fail if that port is not available
|
|
server: {
|
|
port: 1420,
|
|
strictPort: true,
|
|
host: host || false,
|
|
hmr: host
|
|
? {
|
|
protocol: "ws",
|
|
host,
|
|
port: 1421,
|
|
}
|
|
: undefined,
|
|
watch: {
|
|
// 3. tell vite to ignore watching `src-tauri`
|
|
ignored: ["**/src-tauri/**"],
|
|
},
|
|
},
|
|
});
|