-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
50 lines (44 loc) · 1.46 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
45
46
47
48
49
50
import path from 'node:path';
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import { visualizer } from 'rollup-plugin-visualizer';
import replace from '@rollup/plugin-replace';
import url from '@rollup/plugin-url';
const buildAt = () => {
const d = new Date();
const options: Intl.DateTimeFormatOptions = { year: 'numeric', month: 'long', day: 'numeric' };
return d.toLocaleDateString('en-US', options);
};
const buildVersion = () => {
const d = new Date();
return `${d.getFullYear().toString().substring(3)}.${d.getMonth() + 1}${d.getDate()} (${d.getHours()}${d.getMinutes()})`;
};
// https://vitejs.dev/config/
export default (({ command }) => defineConfig({
base: command === 'build' ? '' : '',
plugins: [
react(),
{ ...url({ include: ['**/*.svg'], limit: 15000, }), enforce: 'pre', },
replace({
values: {
__BUILD_DATE__: buildAt(),
__BUILD_VER__: buildVersion(),
},
preventAssignment: true,
}),
visualizer({
filename: 'visualization.html',
template: 'sunburst', // sunburst - d3 style (good as default as well); treemap - table (default); network - graph (slow to open).
gzipSize: true,
brotliSize: true,
}),
],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
server: {
port: 3000,
},
}));