My app is working in in all browsers except IE 11. In IE I get Error: Object doesn't support property or method 'assign'
. I have added the babel polyfill, but I still get the same error, like the polyfill isn't compiling correctly.
I installed babel-polyfill npm install --save babel-polyfill
.
I changed webpack.base.conf.js as below
module.exports = {
context: path.resolve(__dirname, '../'),
entry: {
babelPolyfill: 'babel-polyfill',
app: './src/main.js'
},
The project was started with Vuetify's webpack boilerplate.