多个文件名大小写不同,是因为运行代码是大写E,用vscode运行的是小写e,解决方案:手动npm run dev #There are multiple modules with names that only differ in casing.

 warning  in E:/xxx/xx/xxx/node_modules/[email protected]4.1.2@vue-style-loader/lib/listToStyles.js

There are multiple modules with names that only differ in casing.
This can lead to unexpected behavior when compiling on a filesystem with other case-semantic.
Use equal casing. Compare these module identifiers:
* E:\xxx\xxx\xxx\node_modules\[email protected]4.1.2@vue-style-loader\lib\listToStyles.js
    Used by 3 module(s), i. e.
    E:\xxx\xxx\xxx\node_modules\_vue[email protected]4.1.2@vue-style-loader\lib\addStylesClient.js
* e:\xxx\xxx\xxx\node_modules\[email protected]4.1.2@vue-style-loader\lib\listToStyles.js
    Used by 3 module(s), i. e.
    e:\xxx\xxx\xxx\node_modules\_vue[email protected]4.1.2@vue-style-loader\lib\addStylesClient.js

原文地址:https://www.cnblogs.com/pengchenggang/p/12015032.html

时间: 2024-10-15 11:59:42

多个文件名大小写不同,是因为运行代码是大写E,用vscode运行的是小写e,解决方案:手动npm run dev #There are multiple modules with names that only differ in casing.的相关文章

vue 引入库css时,报There are multiple modules with names that only differ in casing.警告

vue项目,在引入element-ui样式时(在react angular项目中也出现此告警) import 'element-ui/lib/theme-chalk/index.css' 报警告: warning in D:/vuePro/cloud-monitor-vue/node_modules/[email protected]3.2.0@css-loader/dist/runtime/api.js There are multiple modules with names that on

vue报错There are multiple modules with names that only differ in casing. This can lead to unexpected behavior when compiling on a filesystem with other case-semantic. Use equal casing. Compare these mod

今天在开发一个新项目时,当安装完依赖包启动项目后报了一个这个错 There are multiple modules with names that only differ in casing.This can lead to unexpected behavior when compiling on a filesystem with other case-semantic.Use equal casing. Compare these module identifiers 谷歌翻译一下: 有

vue 运行npm run dev报错

npm run dev运行时报错,原因有很多. 一般用下面这种方法都能解决的. 最简单粗暴的方法: 1.删除依赖包node_modules 2.然后重新npm install就行了 (如果这步报错了,试试cnpm install) 原文地址:https://www.cnblogs.com/Mrrabbit/p/8619188.html

Vue 项目: npm run dev b报错 “'webpack-dev-server' 不是内部或外部命令,也不是可运行的程序 或批处理文件。”

前提: 电脑已经安装了nodeJS和npm,  项目是直接下载的zip包. 报错步骤为1:cd /d 目录: 2. npm ren dev  -------> 报错如下: > webpack-dev-server --inline --progress --config build/webpack.dev.conf.js 'webpack-dev-server' 不是内部或外部命令,也不是可运行的程序或批处理文件.npm ERR! code ELIFECYCLEnpm ERR! errno 1

vue中npm run dev运行项目自动打开浏览器

npm run dev运行项目自动打开浏览器设置自动打开浏览器 // 各种设备设置信息      host: 'localhost', //主机名      port: 8080, // 端口号(默认8080)      autoOpenBrowser: false, //是否自动打开浏览器 //想让浏览器自动打开,只需将false改为true即可,为防止端口号冲突,这里也可以随意更改端口号 autoOpenBrowser: true,  //是否默认打开浏览器,默认是false,改为true即

iview npm run dev运行不了

iView 是一套基于 Vue.js 的开源 UI 组件库,主要服务于 PC 界面的中后台产品. 最近在使用的过程当中,碰到一些问题记录下来,供大家参考 : 在下载了官方提供的工程文件 iview-projcet后,运行npm run dev ,会报错,像下面这样的: > [email protected] dev /Users/itxiao6/Desktop/iview-admin > webpack-dev-server --content-base ./ --open --inline

【vue】npm run mock & npm run dev 无法同时运行的解决

[关于系统,没注明的都是windows系统,若以后用的是mac系统则会另外备注] 当项目数据是通过mock搭建而成(参照:[vue]本地开发mock数据支持)时,运行mock服务器和项目的命令 就参照了package.json 中 "script" 下的  "mockdev" 配置. 而 我们在控制台输入 cnpm run mock & cnpm run dev    或    cnpm run mock    都无法同时运行mock服务器和项目.这时候可以

Vue 项目在其他电脑 npm run dev 运行报错的解决方法

一个 Vue 项目从一台电脑上传到 github 上之后,再另外一台电脑上 git clone .并使用 npm run dev 或 npm run start 发生以下报错的解决方法. 报错原因 缺少 node_modules 里面的依赖.在项目目录下使用 npm install然后再 npm run dev.如果在这一步当中, npm install 执行的过程中,处于一直卡顿的状态.说明网络状况不佳.建议使用 cnpm 淘宝源. 淘宝源 使用 cnpm -v 查看是否已经安装 cnpm.如

vue项目 npm run dev在Linux 持久运行

touch run.dev.logchmod u+w run.dev.log 记录日志文件 nohup npm run dev > run.dev.log 2>run.dev.log & exit 一定要控制台执行exit 不记录日志 nohup npm run dev >/dev/null 2>&1 & exit 结束持久npm run dev 查看端口号8080 杀死进程 kill -9 9071 原文地址:https://www.cnblogs.com