Parsing error: No Babel config file detected
Parsing error: No Babel config file detected
我正在尝试在 vue 中创建一个项目。但是我在创建项目后遇到了这个问题。
Parsing error: No Babel config file detected for C:\HotelManagmet\clienthotel\babel.config.js. Either disable config file checking with requireConfigFile: false, or configure Babel so that it can find the config files.
我无法解决它,我尝试重新安装 node.js 和 visual studio 代码,但问题仍然存在。已尝试 运行 npm audit fix --force 但不幸的是结果是一样的。有人知道它可能是什么吗?
在您的终端中,运行 npm install
。然后,将您的 babel.config.js
内容替换为以下内容:
"presets": [
"@vue/cli-plugin-babel/preset"
]
}
我正在尝试在 vue 中创建一个项目。但是我在创建项目后遇到了这个问题。
Parsing error: No Babel config file detected for C:\HotelManagmet\clienthotel\babel.config.js. Either disable config file checking with requireConfigFile: false, or configure Babel so that it can find the config files.
我无法解决它,我尝试重新安装 node.js 和 visual studio 代码,但问题仍然存在。已尝试 运行 npm audit fix --force 但不幸的是结果是一样的。有人知道它可能是什么吗?
在您的终端中,运行 npm install
。然后,将您的 babel.config.js
内容替换为以下内容:
"presets": [
"@vue/cli-plugin-babel/preset"
]
}