diff options
Diffstat (limited to 'src-vue/vite.config.ts')
-rw-r--r-- | src-vue/vite.config.ts | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src-vue/vite.config.ts b/src-vue/vite.config.ts deleted file mode 100644 index 7da61d04..00000000 --- a/src-vue/vite.config.ts +++ /dev/null @@ -1,25 +0,0 @@ -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()] -}) |