forked from VOICEVOX/voicevox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.mts
151 lines (145 loc) · 4.26 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
/// <reference types="vitest" />
import path from "path";
import { rm } from "fs/promises";
import { fileURLToPath } from "url";
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 { nodePolyfills } from "vite-plugin-node-polyfills";
import { BuildOptions, defineConfig, loadEnv, Plugin } from "vite";
import { quasar } from "@quasar/vite-plugin";
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
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, __dirname);
if (!packageName?.startsWith(env.VITE_APP_NAME)) {
throw new Error(
`"package.json"の"name":"${packageName}"は"VITE_APP_NAME":"${env.VITE_APP_NAME}"から始まっている必要があります`,
);
}
const shouldEmitSourcemap = ["development", "test"].includes(options.mode);
process.env.VITE_7Z_BIN_NAME =
(options.mode === "development"
? path.join(__dirname, "build", "vendored", "7z") + path.sep
: "") +
{
win32: "7za.exe",
linux: "7zzs",
darwin: "7zz",
}[process.platform];
process.env.VITE_APP_VERSION = process.env.npm_package_version;
const sourcemap: BuildOptions["sourcemap"] = shouldEmitSourcemap
? "inline"
: false;
return {
root: path.resolve(__dirname, "src"),
envDir: __dirname,
build: {
outDir: path.resolve(__dirname, "dist"),
chunkSizeWarningLimit: 10000,
sourcemap,
},
publicDir: path.resolve(__dirname, "public"),
css: {
preprocessorOptions: {
scss: {
includePaths: [path.resolve(__dirname, "node_modules")],
},
},
},
resolve: {
alias: {
"@": path.resolve(__dirname, "src/"),
},
},
test: {
include: ["../tests/unit/**/*.spec.ts"],
environment: "happy-dom",
globals: true,
},
plugins: [
vue(),
quasar({ autoImportComponentCase: "pascal" }),
nodePolyfills({
include: ["path"],
}),
options.mode !== "test" &&
checker({
overlay: false,
eslint: {
lintCommand: "eslint --ext .ts,.vue .",
},
vueTsc: true,
}),
isElectron && [
cleanDistPlugin(),
electron([
{
entry: "./src/backend/electron/main.ts",
// ref: https://github.com/electron-vite/vite-plugin-electron/pull/122
onstart: ({ startup }) => {
if (options.mode !== "test") {
startup([".", "--no-sandbox"]);
}
},
vite: {
plugins: [tsconfigPaths({ root: __dirname })],
build: {
outDir: path.resolve(__dirname, "dist"),
sourcemap,
},
},
},
{
// ref: https://electron-vite.github.io/guide/preload-not-split.html
entry: "./src/backend/electron/preload.ts",
onstart({ reload }) {
reload();
},
vite: {
plugins: [tsconfigPaths({ root: __dirname })],
build: {
outDir: path.resolve(__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(__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>`,
),
},
};
};