[Vuejs]-Vuetify blank display using the Edge browser

0👍

Here is what solved my display issue on Edge:

Add "regenerator-runtime": "^0.13.7" dependency in package.json

Add "core-js": "^3.6.0" dependency in package.json

Make sure these 2 lines are at the top of main.ts:

import 'core-js/stable'
import 'regenerator-runtime/runtime'

Add @babel/preset-env in babel.config.ts like so:

module.exports = {
  presets: [['@babel/preset-env'], ['@vue/app', { useBuiltIns: 'entry' }]]
}

Leave a comment