Code splitting doesn't work with this plugin
See original GitHub issueWhen I add this plugin when code splitting with import('./ModuleA')
doesn’t work(((
But If I change import code to System.import
all work perfectly.
You known how I can fix it?
Issue Analytics
- State:
- Created 6 years ago
- Comments:6
Top Results From Across the Web
Code splitting doesn't work when plugins resolve imports in ...
Rollup seems to be using resolved import paths as keys without normalizing them, rollup-plugin-typescript2 uses typescript's resolver and ...
Read more >Browser extension is not working with code-splitting
I have cross-browser extension (currently running it on Chrome and Firefox) build with typescript and compiled with webpack. I wanted to use ......
Read more >Code Splitting - webpack
This feature allows you to split your code into various bundles which can then be loaded on demand or in parallel. It can...
Read more >Code Splitting in React – Loadable Components to the Rescue
Code splitting is a way to split up your code from a large file into smaller code bundles. These can then be requested...
Read more >Webpack 4: Universal Code Splitting in React | by Zack Jackson
So, how did we solve this? Pretty much, extract-css-chunks-webpack-plugin was the main issue… We needed a Webpack 4 solution to CSS chunking. We...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
This plugin is for node only; why would you be doing code splitting on server-only code?
Thanks. Make sense.