-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvite.config.ts
More file actions
63 lines (60 loc) · 1.5 KB
/
vite.config.ts
File metadata and controls
63 lines (60 loc) · 1.5 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
57
58
59
60
61
62
63
import { defineConfig, loadEnv } from 'vite';
import { createHtmlPlugin } from 'vite-plugin-html';
import react from '@vitejs/plugin-react-swc';
import legacy from '@vitejs/plugin-legacy';
import { copyFileSync } from 'fs';
import * as path from 'path';
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_MINIDAPPID = "${env.VITE_DEBUG_MINIDAPPID}";
var DEBUG_UID = "${env.VITE_DEBUG_UID}";
</script>
`;
}
return defineConfig({
base: '',
build: {
outDir: 'build',
},
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'
);
}
},
},
],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
});
};