小袁Daily~

2023-12-29 09:08
文章标签 daily

本文主要是介绍小袁Daily~,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

记录一下今天在引sass遇到的坑。

错误如下:  ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree

While resolving: login_project@1.0.0
npm ERR! Found: webpack@3.12.0
npm ERR! node_modules/webpack
npm ERR!   dev webpack@"^3.6.0" from the root project

 很明显就是sass-loader的版本和node-sass版本不统一的问题

1.首先看自己的node版本。 node-v

然后根据自己的版本去node-sass npm里面查找

我的是14.18.1版本 所以我安装的node-sass版本是4.14.1

npm install node-sass@4.14.1

然后还需要安装sass-loader,但我没看到node-sass和sass-loader的对应关系。所以我在网上查了一下7.3.1这个版本是可以的

直接npm install sass-loader@7.3.1

自此

解决 

 

这篇关于小袁Daily~的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/549026

相关文章

[LeetCode] 739. Daily Temperatures

题:https://leetcode.com/problems/daily-temperatures/description/ 题目 Given a list of daily temperatures T, return a list such that, for each day in the input, tells you how many days you would have to

【Daily Code】leetcode 2210. 统计数组中峰和谷的数量

Problem: 2210. 统计数组中峰和谷的数量 Code class Solution {public:int countHillValley(vector<int>& nums) {int cnt = 0;int n = nums.size();for(int i = 1; i < n - 1; i ++) {// if(nums[i] > nums[i + 1] && num

daily reading

操作系统: 让CPU满载,设备驱动,内存管理,线程调度 内存直接存取,不足点:(地址空间不隔离,内存效率低--内存不够要经常换入换出, 程序运行地址不确定), 解决,用虚拟内存方式 ,CPU->虚拟地址->mmu->物理地址 ,(段页式内存模型) 线程: 程序执行流最小单元,cpu调度的最小单元.  运行-》就绪-》等待 (调度算法,轮转法为基础,加上优先级调度) 线程私有:线程局部存储

Python 小白的 Leetcode Daily Challenge 刷题计划 - 20240209(除夕)

368. Largest Divisible Subset 难度:Medium 动态规划 + 方案还原 Yesterday's Daily Challenge can be reduced to the problem of shortest path in an unweighted graph while today's daily challenge can be reduced t

【daily updating】k3s kubeedge + opendFaas搭建教程 —— 欢迎交流

OpenFaas从入门到实战 – 踩坑指南 | k3d+OpenFaas | deploy your first python function https://blog.alexellis.io/first-faas-python-function/ https://docs.openfaas.com/deployment/kubernetes/ 搭建环境:第一种方法失败,第二种方法亲测有

Daily report on the work of July 7

今天是7月8日.最近处理realtek 2692 的待机开机死机重启等问题,是我们做的创维的方案遇到的最棘手的问题,如今E82项目已经到了最后关头,必须在短期内快速找出各个问题的原因.终于到了7月7日所有问题都有了结论,现总结于此.  问题一共有三种: 1.快速按power键,在开机的过程中有show logo之后LED为暗,led灯为绿,并待机待不下去.uart为关.

Daily Meeting

2006年04月26日 09:12:00 Daily Meeting Author:袁琳MSN:testwin@sohu.com Daily Meeting 源于 Scrum开发方法中的 Daily Scrum Meeting : Daily Scrum Meeting 是 Scrum开发方法中的一项重要的实践,在每天早上,都会有召开一个简短的Scrum会议(大约15分钟)

Go tip版本已默认开启泛型 | Gopher Daily (2021.08.22) ʕ◔ϖ◔ʔ

每日一谚:Go's package system taught me to prioritize the consumer of my code. Go技术生态 Go tip版本已默认开启泛型,cmd/compile的-G标志的默认值已由0改为3,从而可以使用新的types2类型检查器并支持type parameter - https://go-review.googlesource.com

daily note k8s

1 pod yaml 1.1 metadata metadata.name required pod名称metadata.namespace required pod所属命名空间,默认defaultmetadata.labels[] 自定义标签列表metadata.annotation[] 自定义注解列表 1.2 spec.containers[] spec.containers[].n