3.0 KiB
Browser Compatibility
browserslist
You will notice a browserslist field in package.json specifying a range of browsers the project is targeting. This value will be used by @babel/preset-env and autoprefixer to automatically determine the JavaScript features that need to be transpiled and the CSS vendor prefixes needed.
See here for how to specify browser ranges.
Polyfills
A default Vue CLI project uses @vue/babel-preset-app, which uses @babel/preset-env and the browserslist config to determine the Polyfills needed for your project.
By default, it passes useBuiltIns: 'usage' to @babel/preset-env which automatically detects the polyfills needed based on the language features used in your source code. This ensures only the minimum amount of polyfills are included in your final bundle. However, this also means if one of your dependencies has specific requirements on polyfills, by default Babel won't be able to detect it.
If one of your dependencies need polyfills, you have a few options:
-
If the dependency is written in an ES version that your target environments do not support: Add that dependency to the
transpileDependenciesoption invue.config.js. This would enable both syntax transforms and usage-based polyfill detection for that dependency. -
If the dependency ships ES5 code and explicitly lists the polyfills needed: you can pre-include the needed polyfills using the polyfills option for
@vue/babel-preset-app. Note thates6.promiseis included by default because it's very common for libs to depend on Promises.// babel.config.js module.exports = { presets: [ ['@vue/app', { polyfills: [ 'es6.promise', 'es6.symbol' ] }] ] }::: tip It's recommended to add polyfills this way instead of directly importing them in your source code, because polyfills listed here can be automatically excluded if your
browserslisttargets don't need them. ::: -
If the dependency ships ES5 code, but uses ES6+ features without explicitly listing polyfill requirements (e.g. Vuetify): Use
useBuiltIns: 'entry'and then addimport '@babel/polyfill'to your entry file. This will import ALL polyfills based on yourbrowserslisttargets so that you don't need to worry about dependency polyfills anymore, but will likely increase your final bundle size with some unused polyfills.
See @babel-preset/env docs for more details.
Modern Mode
TODO