You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mobile Safari on iOS < 15 (iOS 14.3 tested) generates:
"SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list."
Working solution is to replace line 881 in dist/vue-meta.esm-browser.js
static create = (isSSR, config, resolver) => {
with:
static create(isSSR, config, resolver) {
Alternatively, transpiling of the dependency can be used.
The text was updated successfully, but these errors were encountered:
vue-meta/dist/vue-meta.esm-browser.js
Line 811 in e9adc99
Mobile Safari on iOS < 15 (iOS 14.3 tested) generates:
"SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list."
Working solution is to replace line 881 in dist/vue-meta.esm-browser.js
static create = (isSSR, config, resolver) => {
with:
static create(isSSR, config, resolver) {
Alternatively, transpiling of the dependency can be used.
The text was updated successfully, but these errors were encountered: