-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.ts
More file actions
25 lines (24 loc) · 763 Bytes
/
Copy pathvite.config.ts
File metadata and controls
25 lines (24 loc) · 763 Bytes
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
import tailwindcss from '@tailwindcss/vite';
import react from '@vitejs/plugin-react';
import { defineConfig } from 'vite';
import svgr from 'vite-plugin-svgr';
export default defineConfig({
plugins: [react(), svgr({ include: 'src/**/*.svg' }), tailwindcss()],
resolve: {
alias: [{ find: '@', replacement: '/src' }],
},
define: {
__IS_DEV__: JSON.stringify(process.env.NODE_ENV === 'development'),
},
build: {
rollupOptions: {
output: {
manualChunks(id) {
if (id.includes('node_modules')) {
return id.toString().split('node_modules/')[1].split('/')[0].toString();
}
},
},
},
},
});