fixing web-app

This commit is contained in:
stefan
2025-09-18 12:58:45 +02:00
parent 9204163120
commit 142a624665
9 changed files with 25 additions and 58 deletions
+2 -3
View File
@@ -1,14 +1,13 @@
// WASM Bundle Size Optimization Configuration
// Advanced Webpack configuration for smaller WASM bundles
const path = require('path');
//const path = require('path');
// Bundle size optimization configuration
config.optimization = {
...(config.optimization || {}),
// Enable aggressive tree shaking
usedExports: true,
sideEffects: false,
sideEffects: true,
// Split chunks for better caching and smaller initial bundle
splitChunks: {