博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【Vue报错】Module build failed: Error: No parser and no file path given, couldn't infer a p arser....
阅读量:5128 次
发布时间:2019-06-13

本文共 1247 字,大约阅读时间需要 4 分钟。

在创建一个vue项目启动时报错,报错的内容为: 

error in ./src/App.vue

Module build failed: Error: No parser and no file path given, couldn’t infer a p 

arser. 
at UndefinedParserError.Wrapper (D:\dyyc\bookstore\node_modules_prettier@1. 
13.0@prettier\index.js:1948:14) 
at new UndefinedParserError (D:\dyyc\bookstore\node_modules_prettier@1.13.0 
@prettier\index.js:2055:83) 
at normalize (D:\dyyc\bookstore\node_modules_prettier@1.13.0@prettier\index 
.js:7051:13) 
at formatWithCursor (D:\dyyc\bookstore\node_modules_prettier@1.13.0@prettie 
r\index.js:10370:12) 
at D:\dyyc\bookstore\node_modules_prettier@1.13.0@prettier\index.js:31115:1 
at Object.format (D:\dyyc\bookstore\node_modules_prettier@1.13.0@prettier\i 
ndex.js:31134:12) 
at Object.module.exports (D:\dyyc\bookstore\node_modules_vue-loader@13.7.1@ 
vue-loader\lib\template-compiler\index.js:80:23)

@ ./src/App.vue 11:0-392 

@ ./src/main.js 
@ multi ./node_modules/_webpack-dev-server@2.11.2@webpack-dev-server/client?htt 
p://localhost:8082 webpack/hot/dev-server ./src/main.js

 

原因是prettier 更新到1.13.1导致的,component-compiler-utils 1.3.1 已经更新修复了.

【解决方法】:

1、node_modules下面的_prettier@1.13.0@prettier文件夹删除

2、控制台安装  cnpm install --save-dev prettier@1.12.0

3、控制台运行 cnpm run dev

转载于:https://www.cnblogs.com/yan0802/p/9101831.html

你可能感兴趣的文章
字符串处理
查看>>
HtmlUnitDriver 网页内容动态抓取
查看>>
ad logon hour
查看>>
罗马数字与阿拉伯数字转换
查看>>
Eclipse 反编译之 JadClipse
查看>>
距离公式汇总以及Python实现
查看>>
Linux内核态、用户态简介与IntelCPU特权级别--Ring0-3
查看>>
第23月第24天 git命令 .git-credentials git rm --cached git stash clear
查看>>
java SE :标准输入/输出
查看>>
[ JAVA编程 ] double类型计算精度丢失问题及解决方法
查看>>
好玩的-记最近玩的几个经典ipad ios游戏
查看>>
PyQt5--EventSender
查看>>
Sql Server 中由数字转换为指定长度的字符串
查看>>
tmux的简单快捷键
查看>>
[Swift]LeetCode922.按奇偶排序数组 II | Sort Array By Parity II
查看>>
VC6.0调试技巧(一)(转)
查看>>
php match_model的简单使用
查看>>
SIP服务器性能测试工具SIPp使用指导(转)
查看>>
Vue_(组件通讯)子组件向父组件传值
查看>>
STM32单片机使用注意事项
查看>>