-
-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathvite.config.ts
60 lines (55 loc) · 1.66 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
52
53
54
55
56
57
58
59
60
import generouted from "@generouted/react-router/plugin";
import ViteYaml from "@modyfi/vite-plugin-yaml";
import react from "@vitejs/plugin-react-swc";
import { defineConfig } from "vite";
import svgr from "vite-plugin-svgr";
// @ts-expect-error 这里没有加载@types/node类型,但是这个process实际上是存在的
const host = process.env.TAURI_DEV_HOST;
// https://vitejs.dev/config/
export default defineConfig(async () => ({
plugins: [
// 将svg文件作为react组件导入
// import Icon from "./icon.svg?react"
svgr(),
// 解析yaml文件,作为js对象导入
// import config from "./config.yaml"
ViteYaml(),
// 使用swc的react插件
react({ tsDecorators: true }),
// 自动生成路由文件
generouted(),
],
// region Tauri
// 不清屏,方便看rust报错
clearScreen: false,
// tauri需要固定的端口
server: {
port: 1420,
// 端口冲突时直接报错,不尝试下一个可用端口
strictPort: true,
host: host || false,
hmr: host
? {
protocol: "ws",
host,
port: 1421,
}
: undefined,
watch: {
// 不监控src-tauri目录的更改
ignored: ["**/src-tauri/**"],
},
},
// endregion
// 2024年10月3日发现 pnpm build 会报错,
// Top-level await is not available in the configured target environment
// 添加下面的配置解决了
// 2024/10/05 main.tsx去掉了顶层await,所以不需要这个配置
// build: {
// target: "esnext",
// },
// 环境变量前缀
// 只有名字以LR_开头的环境变量才会被注入到前端
// import.meta.env.LR_xxx
envPrefix: "LR_",
}));