-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvite.config.ts
39 lines (35 loc) · 919 Bytes
/
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
import {defineConfig} from 'vite';
import react from '@vitejs/plugin-react';
import gitState from 'git-state';
import {version} from './package.json';
const gitHash =
(gitState.isGitSync(__dirname) && gitState.commitSync(__dirname)) || '-';
// https://vitejs.dev/config/
export default defineConfig(({command}) => {
const DEFINES = {
INFO_VERSION: JSON.stringify(version),
INFO_BUILD_TIME: JSON.stringify(new Date().toISOString()),
INFO_GIT_HASH: JSON.stringify(gitHash)
};
if (command === 'serve') {
DEFINES['CESIUM_BASE_URL'] = JSON.stringify('./cesium/');
}
return {
root: './src',
base: './',
resolve: {
alias: {
'~': __dirname
}
},
build: {
outDir: '../dist',
emptyOutDir: true,
copyPublicDir: command === 'serve',
assetsDir: ''
},
plugins: [react()],
define: DEFINES,
publicDir: '../storage'
};
});