show version

This commit is contained in:
Julian Freeman
2026-04-17 17:57:31 -04:00
parent 7cf3622294
commit 837012d57f
4 changed files with 27 additions and 1 deletions

View File

@@ -1,12 +1,17 @@
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import { readFileSync } from "node:fs";
// @ts-expect-error process is a nodejs global
const host = process.env.TAURI_DEV_HOST;
const packageJson = JSON.parse(readFileSync(new URL("./package.json", import.meta.url), "utf-8"));
// https://vite.dev/config/
export default defineConfig(async () => ({
plugins: [vue()],
define: {
__APP_VERSION__: JSON.stringify(packageJson.version),
},
// Vite options tailored for Tauri development and only applied in `tauri dev` or `tauri build`
//