We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vue-meta is producing bundles that contain syntax features that are incompatible with ES5+.:
vue-meta
This causes syntax errors to be reported on (at least) the following browsers, rendering any app using vue-meta unusable:
<=78
<= 14.4
Ideally the build would contain code that is transpiled/polyfilled to support browsers compatible with ES5+.
Use @rollup/plugin-babel@^5.x in the build script to transpile the code for all module formats.
@rollup/plugin-babel@^5.x
vue@3.x
vue-meta@3.0.0-alpha.10
The text was updated successfully, but these errors were encountered:
build: Integrated babel into build to make bundle compatible with ES5
0ce55be
refers to nuxt#773
Me too.
Sorry, something went wrong.
No branches or pull requests
Problem
vue-meta
is producing bundles that contain syntax features that are incompatible with ES5+.:This causes syntax errors to be reported on (at least) the following browsers, rendering any app using
vue-meta
unusable:<=78
<= 14.4
(related: Vue-meta is not supported in Mobile Safari (iOS < 15) due to unsupported class method declaration with arrow function syntax #760)Ideally the build would contain code that is transpiled/polyfilled to support browsers compatible with ES5+.
Solution
Use
@rollup/plugin-babel@^5.x
in the build script to transpile the code for all module formats.Environment
vue@3.x
vue-meta@3.0.0-alpha.10
The text was updated successfully, but these errors were encountered: