-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvite.config.ts
80 lines (78 loc) · 2.23 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import path from "path";
import { fileURLToPath } from "url";
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import electron, { onstart } from "vite-plugin-electron";
import pkg from "./package.json";
import Components from "unplugin-vue-components/vite";
import AutoImport from "unplugin-auto-import/vite";
import Icons from "unplugin-icons/vite";
import IconsResolver from "unplugin-icons/resolver";
import { rmSync } from "fs";
rmSync("dist_electron", { recursive: true, force: true }); // v14.14.0
// https://vitejs.dev/config/
export default defineConfig({
optimizeDeps: {
include: ["unplugin-icons/vite", "@iconify/json"],
},
build: {
commonjsOptions: {
transformMixedEsModules: true,
},
},
plugins: [
vue(),
Icons({ compiler: "vue3" }),
electron({
main: {
entry: "electron/main/index.ts",
vite: {
build: {
// For Debug
sourcemap: true,
outDir: "dist/electron/main",
},
// Will start Electron via VSCode Debug
plugins: [process.env.VSCODE_DEBUG ? onstart() : null],
},
},
preload: {
input: {
// You can configure multiple preload here
index: path.join(__dirname, "electron/preload/index.ts"),
},
vite: {
build: {
// For Debug
sourcemap: "inline",
outDir: "dist/electron/preload",
},
},
},
// Enables use of Node.js API in the Renderer-process
// https://github.com/electron-vite/vite-plugin-electron/tree/main/packages/electron-renderer#electron-renderervite-serve
renderer: {},
}),
Components({
dts: true,
resolvers: [IconsResolver()],
}),
AutoImport({
// targets to transform
include: [/\.[tj]s?$/, /\.vue$/, /\.vue\?vue/],
imports: ["vue", "vue-router", "@vueuse/core", "pinia"],
}),
],
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
"vue": "vue/dist/vue.esm-bundler.js",
},
},
server: process.env.VSCODE_DEBUG
? {
host: pkg.debug.env.VITE_DEV_SERVER_HOSTNAME,
port: pkg.debug.env.VITE_DEV_SERVER_PORT,
}
: undefined,
});