refactor(vite.config.ts): enhance build configuration and chunking strategy

- Updated Vite configuration to ensure a single React instance and improve Ant Design integration by refining the deduplication process.
- Enhanced build settings, including target specification and sourcemap handling, to optimize performance.
- Streamlined manual chunking strategy for better React context management and improved file naming conventions for assets.
- Adjusted CSS optimization settings and introduced experimental features for improved build performance.
This commit is contained in:
chamikaJ
2025-06-25 13:24:41 +05:30
parent a4da6cdf3a
commit 85cce6e707

View File

@@ -28,129 +28,98 @@ export default defineConfig(({ command, mode }) => {
{ find: '@layouts', replacement: path.resolve(__dirname, './src/layouts') }, { find: '@layouts', replacement: path.resolve(__dirname, './src/layouts') },
{ find: '@services', replacement: path.resolve(__dirname, './src/services') }, { find: '@services', replacement: path.resolve(__dirname, './src/services') },
], ],
// **Ensure single React instance to prevent context issues** // **Ensure single React instance**
dedupe: ['react', 'react-dom', 'react/jsx-runtime'], dedupe: ['react', 'react-dom'],
},
// **CSS Configuration**
css: {
preprocessorOptions: {
less: {
modifyVars: {
'@primary-color': '#1890ff',
},
javascriptEnabled: true,
},
},
}, },
// **Development Server** // **Development Server**
server: { server: {
port: 5173, port: 5173,
host: true,
open: true, open: true,
hmr: {
overlay: false,
},
}, },
// **Build Configuration** // **Build**
build: { build: {
// **Output Directory** // **Target**
outDir: 'build', target: ['es2020'], // Updated to a more modern target, adjust according to your needs
// **Source Maps**
sourcemap: false,
// **Minification**
minify: 'terser',
// **Terser Options**
terserOptions: {
compress: {
drop_console: isProduction,
drop_debugger: isProduction,
},
},
// **Rollup Options** // **Output**
rollupOptions: { outDir: 'build',
output: { assetsDir: 'assets',
// **Simplified Manual Chunking Strategy - Fixed for React context issues** cssCodeSplit: true,
manualChunks: (id) => {
// Vendor libraries // **Sourcemaps**
if (id.includes('node_modules')) { sourcemap: !isProduction ? 'inline' : false, // Disable sourcemaps in production for smaller bundles
// React and React DOM - keep in main vendor to ensure single instance
if (id.includes('react') || id.includes('react-dom')) { // **Minification**
return 'vendor'; minify: isProduction ? 'terser' : false,
} terserOptions: isProduction ? {
compress: {
drop_console: true,
drop_debugger: true,
pure_funcs: ['console.log', 'console.info', 'console.debug'],
passes: 2, // Multiple passes for better compression
},
mangle: {
safari10: true,
},
format: {
comments: false,
},
} : undefined,
// **Chunk Size Warnings**
chunkSizeWarningLimit: 1000,
// **Rollup Options**
rollupOptions: {
output: {
// **Simplified Chunking Strategy to avoid React context issues**
manualChunks: {
// Keep React and all React-dependent libraries together
'react-vendor': ['react', 'react-dom', 'react/jsx-runtime'],
// Ant Design - Keep together to share React context // Separate chunk for router
if (id.includes('antd') || id.includes('@ant-design')) { 'react-router': ['react-router-dom'],
return 'antd';
}
// Chart.js and related // Keep Ant Design separate but ensure React is available
if (id.includes('chart.js') || id.includes('react-chartjs-2')) { 'antd': ['antd', '@ant-design/icons'],
return 'charts'; },
}
// **File Naming Strategies**
// Redux and related state management chunkFileNames: (chunkInfo) => {
if (id.includes('@reduxjs/toolkit') || id.includes('react-redux')) { const facadeModuleId = chunkInfo.facadeModuleId ? chunkInfo.facadeModuleId.split('/').pop() : 'chunk';
return 'redux'; return `assets/js/[name]-[hash].js`;
} },
entryFileNames: 'assets/js/[name]-[hash].js',
// React Router assetFileNames: (assetInfo) => {
if (id.includes('react-router')) { if (!assetInfo.name) return 'assets/[name]-[hash].[ext]';
return 'router'; const info = assetInfo.name.split('.');
} let extType = info[info.length - 1];
if (/png|jpe?g|svg|gif|tiff|bmp|ico/i.test(extType)) {
// i18n extType = 'img';
if (id.includes('react-i18next') || id.includes('i18next')) { } else if (/woff2?|eot|ttf|otf/i.test(extType)) {
return 'i18n'; extType = 'fonts';
}
// Other large libraries
if (id.includes('lodash')) {
return 'lodash';
}
if (id.includes('dayjs')) {
return 'dayjs';
}
// Remaining vendor code
return 'vendor';
}
// Application code chunking
// Project view components
if (id.includes('src/pages/projects/projectView')) {
return 'project-view';
}
// Other project components
if (id.includes('src/pages/projects')) {
return 'projects';
}
// Task management components
if (id.includes('src/components/task-') || id.includes('src/features/tasks')) {
return 'tasks';
}
// Settings and admin components
if (id.includes('src/pages/settings') || id.includes('src/components/admin')) {
return 'admin';
}
// Common components
if (id.includes('src/components/common') || id.includes('src/shared')) {
return 'common';
} }
return `assets/${extType}/[name]-[hash].[ext]`;
}, },
}, },
// **External dependencies (if any should be externalized)**
external: [],
// **Preserve modules to avoid context issues**
preserveEntrySignatures: 'strict',
}, },
// **Experimental features for better performance**
reportCompressedSize: false, // Disable to speed up build
// **Chunk Size Warning Limit** // **CSS optimization**
chunkSizeWarningLimit: 2000, // Increased to accommodate larger antd chunk cssMinify: isProduction,
}, },
// **Optimization** // **Optimization**
@@ -159,21 +128,19 @@ export default defineConfig(({ command, mode }) => {
'react', 'react',
'react-dom', 'react-dom',
'react/jsx-runtime', 'react/jsx-runtime',
'react-router-dom', 'antd',
'@reduxjs/toolkit', '@ant-design/icons',
'react-redux',
'react-i18next',
'dayjs',
], ],
// Remove antd from exclude to prevent context issues exclude: [
exclude: [], // Add any packages that should not be pre-bundled
],
// Force pre-bundling to avoid runtime issues
force: true,
}, },
// **Define Global Constants** // **Define global constants**
define: { define: {
__DEV__: !isProduction, __DEV__: !isProduction,
// Ensure global React is available
global: 'globalThis',
}, },
}; };
}); });