23 lines
485 B
TypeScript
23 lines
485 B
TypeScript
import UnoCSS from 'unocss/vite';
|
|
import { type UserConfig } from 'vite';
|
|
|
|
const commonConfig: (mode: string) => UserConfig = (mode) => ({
|
|
server: {
|
|
host: true,
|
|
},
|
|
esbuild: {
|
|
drop: mode === 'production' ? ['console', 'debugger'] : [],
|
|
},
|
|
build: {
|
|
reportCompressedSize: false,
|
|
chunkSizeWarningLimit: 1500,
|
|
rollupOptions: {
|
|
// TODO: Prevent memory overflow
|
|
maxParallelFileOps: 3,
|
|
},
|
|
},
|
|
plugins: [UnoCSS()],
|
|
});
|
|
|
|
export { commonConfig };
|