I have a fresh install of nuxt version 2.14.6 and I would like to silence an error I get when I run the nuxt command:
WARN Though the "loose" option was set to "false" in your @babel/preset-env co The "loose" option must be the same for @babel/plugin-proposal-class-properties, ["@babel/plugin-proposal-private-methods", { "loose": true }] to the "plugins" section of your Babel config.
I'm assuming I need to override the babel config in my nuxt.config.js file, but I haven't found any helpful solutions.
Add the following to your nuxt.config.js file under the build section.
nuxt.config.js
build
build: { babel:{ plugins: [ ['@babel/plugin-proposal-private-methods', { loose: true }] ] } }
2.1m questions
2.1m answers
60 comments
57.0k users