WebPack HMR with Edge
To get WebPack hot module reload to work with Edge you need a polyfill.
Add it to your project:
npm i event-source-polyfill
Then add it to your vendor.config.js file at the end of the vendor array. … more
To get WebPack hot module reload to work with Edge you need a polyfill.
Add it to your project:
npm i event-source-polyfill
Then add it to your vendor.config.js file at the end of the vendor array. … more
This is based on someone else's code but I've lost the link. If you recognise your work leave a comment. It's here because I converted it to Typescript for convenient inclusion in Aurelia projects.
… more
Dynamically selected view assets are problematic with WebPack because there static dependency detection fails to recognise them as required and does not include them in the build.
To persuade … more