-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
44 lines (40 loc) · 1.09 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
import { defineConfig, loadEnv } from 'vite';
import react from '@vitejs/plugin-react-swc';
import { createHtmlPlugin } from 'vite-plugin-html';
import packageJson from './package.json';
import capitalize from "lodash/capitalize";
import legacy from '@vitejs/plugin-legacy'
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',
},
plugins: [
react(),
legacy({
targets: ['defaults', 'not IE 11', 'Android >= 9'],
}),
createHtmlPlugin({
inject: {
data: {
title: packageJson.name.split('_').map(capitalize).join(' '),
devEnv,
},
},
}),
],
});
}