Reputation: 937
We have a SPA built with React and bundled with Webpack. The server only has the index.html and javascript bundle files located.
The bundle does not have this information. This information must be fetched from the source map. But why does Edge do this?
Upvotes: 1
Views: 78
Reputation: 282
This is similar like SAP application, those JavaScript library has their own logic to preload source codes to optimize the performance/network requests. It's a compatibility issue with React library for Edge browser.
The next version of Edge browser don't have this issue. Maybe you want to try this: https://www.microsoftedgeinsider.com/en-us/
Upvotes: 1