-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvite.config.ts
76 lines (75 loc) · 1.72 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
import { rmSync } from "fs"
import { join, resolve } from "path"
import { defineConfig } from "vite"
import vue from "@vitejs/plugin-vue"
import electron from "vite-plugin-electron"
import pkg from "./package.json"
rmSync("dist", { recursive: true, force: true })
export default defineConfig({
define: {
__VUE_I18N_FULL_INSTALL__: true,
__VUE_I18N_LEGACY_API__: false,
__INTLIFY_PROD_DEVTOOLS__: false,
},
build: {
chunkSizeWarningLimit: 2000,
rollupOptions: {
input: {
main: resolve(__dirname, "index.html"),
child: resolve(__dirname, "child.html"),
},
},
},
css: {
postcss: {
plugins: [
{
postcssPlugin: "internal:charset-removal",
AtRule: {
charset: (atRule) => {
if (atRule.name === "charset") {
atRule.remove()
}
},
},
},
],
},
},
plugins: [
vue(),
electron({
main: {
entry: "electron/main/index.ts",
vite: {
build: {
outDir: "dist/electron/main",
},
},
},
preload: {
input: {
// You can configure multiple preload here
index: 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
renderer: {},
}),
],
server: {
host: pkg.env.VITE_DEV_SERVER_HOST,
port: pkg.env.VITE_DEV_SERVER_PORT,
},
base: "./",
resolve: {
alias: [{ find: "@", replacement: join(__dirname, "src/") }],
},
})