-
Notifications
You must be signed in to change notification settings - Fork 20
/
vite.config.ts
44 lines (40 loc) · 1.02 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
import react from "@vitejs/plugin-react";
import type { UserConfig } from "vite";
const base = "/tshet-uinh-autoderiver/";
export function makeConfig(assetLocation = base) {
if (!assetLocation.endsWith("/")) {
assetLocation += "/";
}
return {
plugins: [
react({
babel: {
plugins: ["@emotion"],
},
}),
],
base,
define: {
// For showing the version number on the page
__APP_VERSION__: JSON.stringify(process.env.npm_package_version),
},
build: {
target: "esnext",
chunkSizeWarningLimit: 8192,
outDir: "build",
},
experimental: {
renderBuiltUrl(filename, type) {
//console.log("#[", filename, type, "]#");
if (type.hostId === "index.html") {
// Rewrite asset URL in index.html
return assetLocation + filename;
} else {
// Use relative paths in other assets
return { relative: true };
}
},
},
} satisfies UserConfig;
}
export default makeConfig();