hyper-tuner-cloud/vite.config.ts

43 lines
1.1 KiB
TypeScript
Raw Normal View History

2022-02-23 15:01:52 -08:00
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import { visualizer } from 'rollup-plugin-visualizer';
2022-02-23 15:01:52 -08:00
// https://vitejs.dev/config/
export default defineConfig({
2022-02-25 15:34:14 -08:00
build: {
outDir: 'build', // This changes the out put dir from dist to build
rollupOptions: {
output: {
manualChunks: {
firebase: [
'firebase/app',
'firebase/performance',
'firebase/auth',
'firebase/analytics',
'firebase/storage',
'firebase/firestore/lite',
],
react: ['react', 'react-dom'],
antdResult: ['antd/es/result'],
antdTable: ['antd/es/table'],
antdIcons: ['@ant-design/icons'],
uplot: ['uplot'],
sentry: ['@sentry/react', '@sentry/browser', '@sentry/tracing'],
kbar: ['kbar'],
perfectScrollbar: ['perfect-scrollbar'],
},
},
},
},
server: { open: true },
2022-02-23 15:01:52 -08:00
css: {
preprocessorOptions: {
less: { javascriptEnabled: true },
},
},
plugins: [
react(),
visualizer(),
2022-02-23 15:01:52 -08:00
],
});