-
Notifications
You must be signed in to change notification settings - Fork 305
/
vite.config.mts
153 lines (145 loc) · 4.6 KB
/
vite.config.mts
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/// <reference types="vitest" />
import path from "path";
import { rm } from "fs/promises";
import electron from "vite-plugin-electron";
import tsconfigPaths from "vite-tsconfig-paths";
import vue from "@vitejs/plugin-vue";
import checker from "vite-plugin-checker";
import { BuildOptions, defineConfig, loadEnv, Plugin } from "vite";
import { quasar } from "@quasar/vite-plugin";
const isElectron = process.env.VITE_TARGET === "electron";
const isBrowser = process.env.VITE_TARGET === "browser";
export default defineConfig((options) => {
const packageName = process.env.npm_package_name;
const env = loadEnv(options.mode, import.meta.dirname);
if (!packageName?.startsWith(env.VITE_APP_NAME)) {
throw new Error(
`"package.json"の"name":"${packageName}"は"VITE_APP_NAME":"${env.VITE_APP_NAME}"から始まっている必要があります`,
);
}
// 型を曖昧にして下の[process.platform]のエラーを回避する
const sevenZipBinNames: Record<string, string> = {
win32: "7za.exe",
linux: "7zzs",
darwin: "7zz",
};
const sevenZipBinName = sevenZipBinNames[process.platform];
if (!sevenZipBinName) {
throw new Error(`Unsupported platform: ${process.platform}`);
}
process.env.VITE_7Z_BIN_NAME =
(options.mode === "development"
? path.join(import.meta.dirname, "vendored", "7z") + path.sep
: "") + sevenZipBinName;
process.env.VITE_APP_VERSION = process.env.npm_package_version;
const shouldEmitSourcemap = ["development", "test"].includes(options.mode);
const sourcemap: BuildOptions["sourcemap"] = shouldEmitSourcemap
? "inline"
: false;
// ref: electronの起動をスキップしてデバッグ起動を軽くする
const skipLahnchElectron =
options.mode === "test" || process.env.SKIP_LAUNCH_ELECTRON === "1";
return {
root: path.resolve(import.meta.dirname, "src"),
envDir: import.meta.dirname,
build: {
outDir: path.resolve(import.meta.dirname, "dist"),
chunkSizeWarningLimit: 10000,
sourcemap,
},
publicDir: path.resolve(import.meta.dirname, "public"),
css: {
preprocessorOptions: {
scss: {
api: "modern",
includePaths: [path.resolve(import.meta.dirname, "node_modules")],
},
},
},
resolve: {
alias: {
"@": path.resolve(import.meta.dirname, "src/"),
},
},
plugins: [
vue(),
quasar({ autoImportComponentCase: "pascal" }),
options.mode !== "test" &&
checker({
overlay: false,
eslint: {
lintCommand: "eslint --ext .ts,.vue .",
},
vueTsc: true,
}),
isElectron && [
cleanDistPlugin(),
electron([
{
entry: "./backend/electron/main.ts",
// ref: https://github.com/electron-vite/vite-plugin-electron/pull/122
onstart: ({ startup }) => {
console.log("main process build is complete.");
if (!skipLahnchElectron) {
void startup([".", "--no-sandbox"]);
}
},
vite: {
plugins: [tsconfigPaths({ root: import.meta.dirname })],
build: {
outDir: path.resolve(import.meta.dirname, "dist"),
sourcemap,
},
},
},
{
// ref: https://electron-vite.github.io/guide/preload-not-split.html
entry: "./backend/electron/preload.ts",
onstart({ reload }) {
if (!skipLahnchElectron) {
reload();
}
},
vite: {
plugins: [tsconfigPaths({ root: import.meta.dirname })],
build: {
outDir: path.resolve(import.meta.dirname, "dist"),
sourcemap,
rollupOptions: {
output: { inlineDynamicImports: true },
},
},
},
},
]),
],
isBrowser && injectBrowserPreloadPlugin(),
],
};
});
const cleanDistPlugin = (): Plugin => {
return {
name: "clean-dist",
apply: "build",
enforce: "pre",
async buildStart() {
await rm(path.resolve(import.meta.dirname, "dist"), {
recursive: true,
force: true,
});
},
};
};
const injectBrowserPreloadPlugin = (): Plugin => {
return {
name: "inject-browser-preload",
transformIndexHtml: {
order: "pre",
handler: (html: string) =>
html.replace(
"<!-- %BROWSER_PRELOAD% -->",
`<script type="module" src="./backend/browser/preload.ts"></script>`,
),
},
};
};