Open zdila opened 4 years ago
Hi,
Just a quick note - if your component generates chunks (code splitting) then importing it in other project imports undefined.
undefined
Disabling code splitting in the component helps - in config/webpack-config.js:
config/webpack-config.js
plugins: [ new webpack.optimize.LimitChunkCountPlugin({ maxChunks: 1, }), ...
Hi,
Just a quick note - if your component generates chunks (code splitting) then importing it in other project imports
undefined
.Disabling code splitting in the component helps - in
config/webpack-config.js
: