-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite-common.js
More file actions
45 lines (44 loc) · 1.27 KB
/
Copy pathvite-common.js
File metadata and controls
45 lines (44 loc) · 1.27 KB
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
44
45
import react from '@vitejs/plugin-react';
import unocss from 'unocss/vite';
import {presetUno, transformerDirectives} from 'unocss';
import { defineConfig } from 'vite';
import {presetDaisy} from 'unocss-preset-daisy'
import istanbul from 'babel-plugin-istanbul';
// eslint-disable-next-line no-undef
const env = process.env;
export default defineConfig({
root: './',
plugins: [
react({
babel: {
plugins: [[istanbul]]
}
}),
unocss({
shortcuts: {
'tab-active': 'border-red-300',
},
transformers: [transformerDirectives()],
presets: [presetUno(), presetDaisy()],
}),
],
publicDir: './src/public',
// 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 uses Chromium on Windows and WebKit on macOS and Linux
target: env.TAURI_PLATFORM == 'windows' ? 'chrome105' : 'safari13',
// don't minify for debug builds
minify: !env.TAURI_DEBUG ? 'esbuild' : false,
// 디버그 빌드에서 소스맵을 제공합니다.
sourcemap: true,
},
});