• Vue安装插件时候中遇到冲突依赖解决方案


    错误如下:

    npm ERR! code ERESOLVE
    npm ERR! ERESOLVE could not resolve
    npm ERR! 
    npm ERR! While resolving: @vue/eslint-config-standard@6.1.0    
    npm ERR! Found: eslint-plugin-vue@8.7.1
    npm ERR! node_modules/eslint-plugin-vue
    npm ERR!   dev eslint-plugin-vue@"^8.0.3" from the root project
    npm ERR! 
    npm ERR! Could not resolve dependency:
    npm ERR! peer eslint-plugin-vue@"^7.0.0" from @vue/eslint-config-standard@6.1.0
    npm ERR! node_modules/@vue/eslint-config-standard
    npm ERR!   dev @vue/eslint-config-standard@"^6.1.0" from the root project      
    npm ERR!
    npm ERR! Conflicting peer dependency: eslint-plugin-vue@7.20.0
    npm ERR! node_modules/eslint-plugin-vue
    npm ERR!   peer eslint-plugin-vue@"^7.0.0" from @vue/eslint-config-standard@6.1.0
    npm ERR!   node_modules/@vue/eslint-config-standard
    npm ERR!     dev @vue/eslint-config-standard@"^6.1.0" from the root project
    npm ERR!
    npm ERR! Fix the upstream dependency conflict, or retry
    npm ERR! this command with --force, or --legacy-peer-deps
    npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
    npm ERR!
    npm ERR! See C:\Users\曾\AppData\Local\npm-cache\eresolve-report.txt for a full report.

    npm ERR! A complete log of this run can be found in:
    npm ERR!     C:\Users\曾\AppData\Local\npm-cache\_logs\2023-09-27T12_09_33_066Z-debug-0.log

    解决方法:

    npm install postcss-px-to-viewport@1.1.1 -D --legacy-peer-deps

    只需要在后面加 --legacy-peer-deps就能解决依赖冲突问题

    原理:

    --legacy-peer-deps 是一个在 npm 包管理器和 yarn 包管理器中使用的命令行选项。它允许你在一个项目中忽略 peer dependencies 的版本冲突或缺失,使项目可以正常安装和运行,而不会因为这些冲突或缺失导致错误

  • 相关阅读:
    element分页
    flutter系列之:构建Widget的上下文环境BuildContext详解
    十分钟入门以太和Opensea测试网批量发行NFT实战
    公众号5月C#/.NET热文一览
    2、从“键鼠套装”到“全键盘游戏化”审核
    AM@隐函数@隐函数求导@幂指函数求导@参数式函数求导
    Sitecore XP 10.3(latest) Docker一键部署
    JS的数组与字符串方法脑图总结
    mysql- 主从复制的搭建过程
    【蓝桥杯嵌入式】一、初识stm32
  • 原文地址:https://blog.csdn.net/m0_74099927/article/details/133363223