Skip to main content

All Questions

2 votes
0 answers
1k views

Webpack 5 won't transpile to ES5 for Internet Explorer 11

I'm trying to create a webpack 5 : babel 7 configuration that transpiles down to es5 that IE11 can read. It's a static site that uses vue.js. I've got it building successfully, but it's not doing some ...
Nick's user avatar
  • 1,209
0 votes
1 answer
215 views

Show blank page on IE11 when add firebase to Vue Project

My Vue project used Firebase Auth for sign in and sign up but when added firebase package to project, it show blank page on ie11. Firebase and Vue Cli Plugin Babel package: "firebase": &...
MrXo's user avatar
  • 196
2 votes
1 answer
4k views

Vue not working in IE11 despite Babel Polyfill

unfortunately, my most recent application is required to support Internet Explorer 11. This requirement came somewhat suprising to me, so I already built the applications frontend with Vue.js. The ...
mapawa's user avatar
  • 181
1 vote
1 answer
1k views

Nuxt & Firebase - IE 11 (Object doesn't support property or method 'values')

I'm having trouble getting Nuxt and babel when trying to polyfill firebase for IE11. I'm not sure what I am missing. useBuiltIns: "usage" IE11 returns an error of Object doesn't support property or ...
Scaalees's user avatar
0 votes
1 answer
707 views

SCRIPT errors with IE 11 when using Babel and Vue.js

We're having a problem with our Vue.js application on Windows 10 / IE 11. The application was giving SCRIPT1003: Expected ':' until we updated out babel.config to the following: module.exports = { ...
Dan Kelly's user avatar
  • 2,672
2 votes
1 answer
7k views

What does this SCRIPT1002: Syntax error in IE11 mean? (Vue)

I've made a web app in Vue.JS and it won't compile in IE11, it just shows a blank page. I have used babel's polyfill, however it still does not work. The error is: SCRIPT1002: Syntax error chunk-...
squish's user avatar
  • 1,056
1 vote
0 answers
2k views

SCRIPT1010: Expected Identifier in IE11 Vuejs Nuxt

I am using babel with nuxt js. However, my project not working in IE11. I think babel not transpile my code properly. When i open the developer console i am facing "SCRIPT1010: Expected identifier ...
Ömer Doğan's user avatar
1 vote
1 answer
2k views

Object doesn't support property or method 'replace' on Internet Explorer 11

I am trying to make my Vuejs application work on IE11. However, one node module (vue-directive-tooltip) throw an error on IE11: Object doesn't support property or methode "replace" The module is ...
Benjamin's user avatar
4 votes
1 answer
5k views

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

I have a Vue app running in Firefox, Edge, and Chrome, however, in IE 11 (or lower), I see a blank page. And in the console of IE is see something like SCRIPT1002: Syntax error app.js and SCRIPT5022: ...
Gilian's user avatar
  • 1,569
8 votes
1 answer
7k views

Babel not transpiling chunk-vendors for IE11, in Vue-CLI project

I have a Vue-CLI webapp that needs to support IE11. In package.json we have set: "browserslist": [ "> 1%", "last 2 versions", "not ie <= 8", "ie 11" ] and this seems to work ...
Steve Bennett's user avatar
0 votes
1 answer
1k views

Possible spread error on IE 11 (Webpack, VueJS)?

I'm getting this error on IE 11: Here are my webpack and babel configuations: webpack configuration const path = require('path'); const webpack = require('webpack'); const { VueLoaderPlugin } = ...
The Bassman's user avatar
  • 2,321
1 vote
1 answer
993 views

Vue project: object does not support this property or method "hasOwnProperty" IE11

I was developing a vue app using vue advanced webpack template and I didn't took much attention to IE browser but today I tried and I'm getting very odd errors. I have a several sparkline charts ...
Javier Muñoz Tous's user avatar
0 votes
2 answers
4k views

Syntax error in IE11 with vue.js, webpack and babel

I'm trying to get a demo to work and it works fine in Chrome but fails in IE11. The syntax error is related to an eval() but is only an issue with IE11. An example of the issue can be seen here (view ...
Mark Tolson's user avatar