diff --git a/packages/app/next.config.js b/packages/app/next.config.js index 0d7741b622..e0a89d3ff5 100644 --- a/packages/app/next.config.js +++ b/packages/app/next.config.js @@ -62,7 +62,7 @@ const nextConfig = { productionBrowserSourceMaps: true, webpack(config) { - config.optimization.chunkIds = 'named'; + config.optimization.chunkIds = 'size'; config.module.rules.push({ test: /\.svg$/, type: 'asset', diff --git a/packages/app/src/components/combo-box/combo-box.tsx b/packages/app/src/components/combo-box/combo-box.tsx index cfcde33f48..e540d1ca46 100644 --- a/packages/app/src/components/combo-box/combo-box.tsx +++ b/packages/app/src/components/combo-box/combo-box.tsx @@ -21,6 +21,7 @@ type TProps