一. Syntax Error: Error: Cannot find moduleimagemingifsicle

  1. npm run build 报错报错如下
    在这里插入图片描述
  2. 原因
    这个错误消息显示缺少了 imagemingifsicle 模块,而它是 imagewebpackloader依赖项,导致构建失败
  3. 解决
    (1)方法
    在这里插入图片描述
    (2)方法二
    卸载已有的imagewebpackloader,用 cnpm 重新安装
// 卸载
 npm uninstall image-webpack-loader
// cnpm 安装
cnpm install --save-dev image-webpack-loader

二. Vue packages version mismatch:vuetemplatecompiler

  1. 报错信息如下
Error: 

Vue packages version mismatch:

- vue@2.6.14 (D:workDirxxxxxxwebnode_modulesvuedistvue.runtime.common.js)
- vue-template-compiler@2.7.14 (D:workDirxxxxxxwebnode_modulesvue-template-compilerpackage.json)

This may cause things to work incorrectly. Make sure to use the same version for both.
If you are using vue-loader@>=10.0, simply update vue-template-compiler.
If you are using vue-loader@<10.0 or vueify, re-installing vue-loader/vueify should bump vue-template-compiler to the latest.
  1. 原因
    这个错误信息显示当前安装的 Vue.js 版本vue-template-compiler 版本匹配可能会导致一些问题。为了确保正常工作应该确保这两者使用相同版本
  2. 解决
    更新 vue-template-compiler 版本
    npm install vue-template-compiler@2.6.14

三. This dependency was not found:compositionapi

  1. 报错信息如下
This dependency was not found:

* @vue/composition-api/dist/vue-composition-api.mjs in ./node_modules/vue-demi/lib/index.mjs

To install it, you can run: npm install --save @vue/composition-api/dist/vue-composition-api.mjs
Error from chokidar (D:): Error: EBUSY: resource busy or locked, lstat 'D:DumpStack.log.tmp'
  1. 原因
    `这个错误提示表明项目中的某个模块依赖了 @vue/composition-api 的特定文件 vue-composition-api.mjs,但是该文件未被找到,导致构建失败
  2. 解决
    安装 @vue/composition-api
npm install --save @vue/composition-api

四. These dependencies were not found:vabicons vabicons/lib/vabicons.css

  1. 报错如下
    在这里插入图片描述

原文地址:https://blog.csdn.net/weixin_47375144/article/details/131936662

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_47952.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注