Vue app blank page in IE 11 or lower even with polyfills Vue app blank page in IE 11 or lower even with polyfills vue.js vue.js

Vue app blank page in IE 11 or lower even with polyfills


So the issue was with a dependency I was using. vuex-persist was causing the issue. The fix was to add the following in vue.config.js:

module.exports = {/* ... other config ... */  transpileDependencies: ['vuex-persist']}

Thanks to: https://forum.vuejs.org/t/internet-explorer-11-script1002-blank-page-error/53327/5