forked from beyond-all-reason/bar-lobby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
electron.vite.config.ts
86 lines (85 loc) · 2.77 KB
/
electron.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
81
82
83
84
85
86
import vue from "@vitejs/plugin-vue";
import { defineConfig, externalizeDepsPlugin } from "electron-vite";
import path from "path";
import VueRouter from "unplugin-vue-router/vite";
import renderer from "vite-plugin-electron-renderer";
export default defineConfig({
main: {
resolve: {
alias: {
"@": path.join(__dirname, "src/main"),
$: path.join(__dirname, "src/common"),
},
},
build: {
assetsDir: ".",
rollupOptions: {
output: {
manualChunks(id) {
if (id.includes("env-paths")) {
return "env-paths";
}
return;
},
},
},
},
plugins: [externalizeDepsPlugin({ exclude: ["env-paths"] })],
},
renderer: {
publicDir: "assets",
resolve: {
alias: {
"@": path.join(__dirname, "src/renderer"),
$: path.join(__dirname, "src/common"),
},
},
build: {
assetsDir: ".",
rollupOptions: {
external: ["better-sqlite3"],
},
sourcemap: true,
},
optimizeDeps: {
esbuildOptions: {
target: "esnext",
},
},
css: {
modules: false,
preprocessorOptions: {
scss: {
additionalData: `@use "@/styles/_utils.scss";`,
},
},
},
plugins: [
VueRouter({
routesFolder: "src/renderer/views",
dts: "src/renderer/typed-router.d.ts",
importMode: "sync",
}),
vue(),
renderer({
nodeIntegration: true,
optimizeDeps: {
include: [
{ name: "path", type: "commonjs" },
{ name: "fs", type: "commonjs" },
{ name: "child_process", type: "commonjs" },
{ name: "stream", type: "commonjs" },
{ name: "os", type: "commonjs" },
{ name: "node-fetch", type: "module" },
{ name: "spring-map-parser", type: "commonjs" },
{ name: "better-sqlite3", type: "commonjs" },
{ name: "tachyon-client", type: "commonjs" },
{ name: "octokit", type: "commonjs" },
{ name: "axios", type: "commonjs" },
{ name: "glob-promise", type: "commonjs" },
],
},
}),
],
},
});