-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
51 lines (49 loc) · 1.62 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
44
45
46
47
48
49
50
51
import { defineConfig, UserConfig } from "vite";
import { ViteMinifyPlugin } from "vite-plugin-minify";
function replaceTws() {
return {
name: "replace-tws",
transform(code: string) {
return {
code: code.replace(/tw`(.*)`/g, '"$1"'),
};
},
};
}
// https://vitejs.dev/config/
export default defineConfig(
async () =>
({
// Vite options tailored for Tauri development and only applied in `tauri dev` or `tauri build`
//
// 1. prevent vite from obscuring rust errors
clearScreen: false,
root: "./src",
build: {
minify: "terser",
cssMinify: false,
cssCodeSplit: true,
rollupOptions: {
input: {
main: "./src/main.html",
options: "./src/settings.html",
about: "./src/about.html",
help: "./src/help.html",
compile: "./src/compile.html",
read: "./src/read.html",
},
plugins: [replaceTws()],
},
},
// 2. tauri expects a fixed port, fail if that port is not available
server: {
port: 1420,
strictPort: true,
watch: {
// 3. tell vite to ignore watching `src-tauri`
ignored: ["**/src-tauri/**"],
},
},
plugins: [ViteMinifyPlugin()],
}) satisfies UserConfig,
);