meteor-client-bundler
meteor-client-bundler copied to clipboard
The core-js npm package could not be found in your node_modules, while using the client bundle in Internet explorer 11
I added both to bundler.config.json and npm's package.json , but it always fail with this error
Same issue on react-native
Removing this snippet fixed it for me:
var core = function () {
try {
return require("core-js/modules/_core");
} catch (e) {
// Older versions of core-js had a different file layout.
return require("core-js/modules/$.core");
}
}();