本文介绍了Nuxt js-nuxt 2.14.6的全新安装包含巴别塔松散选项和警告的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我全新安装了nuxt版本2.14.6,我想要静默运行nuxt命令时收到的错误:
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.
我假设我需要重写nuxt.config.js文件中的Babel配置,但我没有找到任何有用的解决方案。
推荐答案
将以下内容添加到build
节下的nuxt.config.js
文件中。
nuxt.config.js
build: {
babel:{
plugins: [
['@babel/plugin-proposal-private-methods', { loose: true }]
]
}
}
这篇关于Nuxt js-nuxt 2.14.6的全新安装包含巴别塔松散选项和警告的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!