在启动VUE项目的时候经常会遇到以下的错误:
No parser and no filepath given, using ‘babel’ the parser now but this will throw an error in the future. Please specify a parser or a filepath so one can be inferred.
这个一般是配置问题,是安装的vue-loader的问题!
找到node_modules\vue-loader\lib\template-compiler\index.js 文件,打开做如下修改:
// prettify render fn
if (!isProduction) {
// code = prettier.format(code, { semi: false })
code = prettier.format(code, { semi: false, parser: 'babylon' })
}