DimiMikadze / create-react-library

React NPM library starter kit based on Facebook's create react app
MIT License
602 stars 60 forks source link

Doesn't work for components with code-splitting #73

Open zdila opened 4 years ago

zdila commented 4 years ago

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:

 plugins: [
      new webpack.optimize.LimitChunkCountPlugin({
        maxChunks: 1,
      }),
      ...