-
Notifications
You must be signed in to change notification settings - Fork 9
/
vite.config.ts
43 lines (42 loc) · 1.13 KB
/
vite.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import vue from '@vitejs/plugin-vue'
import { resolve } from 'path'
import AutoImport from 'unplugin-auto-import/vite'
import { defineConfig } from 'vitest/config'
// See https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
// See https://github.com/unplugin/unplugin-auto-import
AutoImport({
imports: ['vue'],
dts: './src/auto-imports.d.ts',
eslintrc: {
enabled: true,
filepath: resolve(__dirname, '.eslintrc-auto-import.json'),
},
}),
],
resolve: {
alias: {
'@': resolve(__dirname, 'src')
}
},
clearScreen: false,
envPrefix: ['VITE_', 'TAURI_'],
server: {
port: 1420,
strictPort: true,
},
build: {
outDir: './dist',
// See https://tauri.app/v1/references/webview-versions for details
target: process.env.TAURI_PLATFORM == 'windows' ? 'chrome105' : 'safari15',
minify: !process.env.TAURI_DEBUG ? 'esbuild' : false,
sourcemap: !!process.env.TAURI_DEBUG,
emptyOutDir: true,
},
// See https://vitest.dev/config/
test: {
include: ['tests/unit/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
},
})