-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.ts
More file actions
56 lines (53 loc) · 1.36 KB
/
vite.config.ts
File metadata and controls
56 lines (53 loc) · 1.36 KB
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
import { defineConfig, loadEnv } from "vite";
import react from "@vitejs/plugin-react-swc";
import { createHtmlPlugin } from "vite-plugin-html";
import legacy from "@vitejs/plugin-legacy";
import { copyFileSync } from "fs";
export default ({ mode }) => {
let devEnv = "";
const env = Object.assign(
globalThis.process.env,
loadEnv(mode, globalThis.process.cwd())
);
if (mode === "development") {
devEnv = `
<script>
var DEBUG = "${env.VITE_DEBUG}" === 'true';
var DEBUG_HOST = "${env.VITE_DEBUG_HOST}";
var DEBUG_PORT = "${env.VITE_DEBUG_MDS_PORT}";
var DEBUG_UID = "${env.VITE_DEBUG_UID}";
</script>
`;
}
return defineConfig({
base: "",
build: {
outDir: "build",
minify: false,
},
// server: { host: "192.168.0.122", port: 5173 },
plugins: [
react(),
legacy({
targets: ["defaults", "not IE 11", "Android >= 9"],
}),
createHtmlPlugin({
inject: {
data: {
devEnv,
},
},
}),
{
name: 'copy-changelog',
closeBundle() {
try {
copyFileSync('CHANGELOG.md', 'build/CHANGELOG.md');
} catch (error) {
console.warn('Could not copy CHANGELOG.md, please check that it exists in the root directory');
}
}
}
],
});
};