aboutsummaryrefslogtreecommitdiff
path: root/src-vue/vite.config.ts
diff options
context:
space:
mode:
authorRemy Raes <contact@remyraes.com>2022-09-20 23:32:20 +0200
committerRemy Raes <contact@remyraes.com>2022-09-20 23:32:20 +0200
commit2e622c0989f6abe35e6d8bbd20d523a37e87d923 (patch)
treed18f89016cadffb27bcdd07199f1eceaadb6b00b /src-vue/vite.config.ts
parentf9e6bf91e6d0f5928e036350c09aed1d35fae36d (diff)
downloadFlightCore-2e622c0989f6abe35e6d8bbd20d523a37e87d923.tar.gz
FlightCore-2e622c0989f6abe35e6d8bbd20d523a37e87d923.zip
build: add Vue app skeleton
Diffstat (limited to 'src-vue/vite.config.ts')
-rw-r--r--src-vue/vite.config.ts25
1 files changed, 25 insertions, 0 deletions
diff --git a/src-vue/vite.config.ts b/src-vue/vite.config.ts
new file mode 100644
index 00000000..7da61d04
--- /dev/null
+++ b/src-vue/vite.config.ts
@@ -0,0 +1,25 @@
+import { defineConfig } from 'vite'
+import vue from '@vitejs/plugin-vue'
+
+// https://vitejs.dev/config/
+export default defineConfig({
+ // prevent vite from obscuring rust errors
+ clearScreen: false,
+ // Tauri expects a fixed port, fail if that port is not available
+ server: {
+ strictPort: true,
+ },
+ // to make use of `TAURI_PLATFORM`, `TAURI_ARCH`, `TAURI_FAMILY`,
+ // `TAURI_PLATFORM_VERSION`, `TAURI_PLATFORM_TYPE` and `TAURI_DEBUG`
+ // env variables
+ envPrefix: ['VITE_', 'TAURI_'],
+ build: {
+ // Tauri supports es2021
+ target: ['es2021', 'chrome100', 'safari13'],
+ // don't minify for debug builds
+ minify: !process.env.TAURI_DEBUG ? 'esbuild' : false,
+ // produce sourcemaps for debug builds
+ sourcemap: !!process.env.TAURI_DEBUG,
+ },
+ plugins: [vue()]
+})