-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.ts
More file actions
42 lines (40 loc) · 1.12 KB
/
vite.config.ts
File metadata and controls
42 lines (40 loc) · 1.12 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
import { sveltekit } from '@sveltejs/kit/vite';
import { visualizer } from 'rollup-plugin-visualizer';
import type { TemplateType } from 'rollup-plugin-visualizer/dist/plugin/template-types';
import { defineConfig } from 'vite';
const visualizerFileName = 'stats.html';
export default defineConfig(({ mode }) => {
return {
plugins: [
sveltekit(),
process.env.CHART_TEMPLATE !== undefined
? visualizer({
emitFile: true,
filename: visualizerFileName,
template: (process.env.CHART_TEMPLATE as TemplateType) || undefined
})
: undefined
],
preview: {
open: process.env.CHART_TEMPLATE !== undefined ? `/${visualizerFileName}` : undefined
},
esbuild: {
drop: mode === 'production' ? ['console'] : []
},
build: {
rollupOptions: {
onwarn: (warning, defaultHandler) => {
if (warning.code == 'INVALID_ANNOTATION' && warning.id?.includes('simplex-noise')) return;
defaultHandler(warning);
}
},
commonjsOptions: {
// ignore workerpool's node-only dependencies
ignore: ['os', 'child_process', 'worker_threads']
}
},
worker: {
format: 'es'
}
};
});