No parser no filepath given問題解決

關於 vue 項目 run dev 的時候,控制檯警告:javascript

No parser and no filepath given, using 'babylon' the parser now but this will throw an error in the future. Please specify a parser or a file path so one can be inferred.vue

這個通常是配置問題,是vue-loader的問題。java

不過有的說是 安裝 prettier 依賴,來控制代碼格式,好像沒用。node

其實有個簡單的方法就是修改一下js文件:this

去文件夾:code

node_modules\vue-loader\lib\template-compiler\index.js

 下進行修改:orm

if (!isProduction) {       
    code = prettier.format(code, { semi: false})     
}

修改爲:blog

if (!isProduction) {
  code = prettier.format(code, { semi: false, parser: 'babylon' })
}

OK,去從新run 一下ip

相關文章
相關標籤/搜索