
Additional Details
in [email protected]+ is normal
Other documents are normal ,only vendors.js contains ES6.
no es6
Hi @lingliMr. This is expected behavior since vendors from node_modules are ignored for babel transpile. You can whitelist the ones that need transpilation: https://nuxtjs.org/api/configuration-build/#transpile
Update: From screenshot i guess it is query-string package thus this should do the trick:
{
build: {
transpile: [ 'query-string' ]
}
}
Most helpful comment
Update: From screenshot i guess it is
query-stringpackage thus this should do the trick: