Skip to content
This repository was archived by the owner on Sep 9, 2024. It is now read-only.

Commit d4a0f75

Browse files
committed
fix: do not minify core output to avoid downstream minify issues
1 parent 1329788 commit d4a0f75

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

packages/core/webpack.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ function moduleNameToPath(libName) {
1414

1515
const config = {
1616
mode: isProduction ? 'production' : 'development',
17+
optimization: {
18+
minimize: false,
19+
},
1720
devtool: 'source-map',
1821
externals: isProduction
1922
? {

0 commit comments

Comments
 (0)