Skip to content

Commit ad5381c

Browse files
committed
fix(Build): Don't use index.js entry which should be used for module federation and would break chunk loading if used in a non-mf environment.
1 parent 09d0e2b commit ad5381c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webpack/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ module.exports = (env, argv, config, babel_include = []) => {
2525

2626
const base_config = {
2727
entry: {
28-
"bundle.min": path.resolve(__dirname, "../src/index.js"),
28+
"bundle.min": path.resolve(__dirname, "../src/patterns.js"),
2929
"bundle-polyfills.min": path.resolve(__dirname, "../src/polyfills.js"),
3030
},
3131
externals: [

0 commit comments

Comments
 (0)