-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
34 lines (29 loc) · 1.1 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
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 = () => {
var d = new Date();
//return `Build ${d.getMonth() + 1}.${d.getDate()}.${d.getFullYear()} at ${d.getHours()}:${d.getMinutes()}`;
return `Build: ${d.getFullYear().toString().substring(3)}.${d.getMonth() + 1}${d.getDate()} (${d.getHours()}${d.getMinutes()})`;
};
export default defineConfig({
base: '',
plugins: [
react(),
{ ...url({ include: ['**/*.svg'], limit: 15000, }), enforce: 'pre', },
// replace({
// values: {
// __BUILD_DATE__: buildAt(),
// },
// 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,
}),
]
});