解决npm ERR! command git --no-replace-objects ls-remote ssh://git@github.com/nhn/raphael.git
遇到类似这种报错: npm install npm ERR! code 128 npm ERR! An unknown git error occurred npm ERR! command git --no-replace-objects ls-remote ssh://git@github.com/nhn/raphael.git npm ERR! command-line line 0: unsupported option "accept-new". npm…
485 2023-04-25 去围观安装node-sass的坑
如果遇到类似上图的问题 先当前node使用的是哪个版本 node -p "[process.platform, process.arch, process.versions.modules].join('-')" 下载对应的版本号:https://github.com/sass/node-sass/releases/ 下载好的版本修改的名字为win32-x64-72_binding然后覆…
402 2023-04-25 去围观This is probably not a problem with npm. There is likely additional logging output above.
解决方法: package.json是否在其他目录也出现 或者 删除node_modules、package-lock.json,重装npm i
287 2023-04-17 去围观The code generator has deoptimised the styling of xxxx.js as it exceeds the max of 500kb
这个问题其实就是babel处理文件的大小被限制在了500kb,解决如下: // 在项目根目录下查找 .babelrc 或 babel.config.js 文件,如果没有就创建一个(两者其一即可),配置如下: // .babelrc: { "compact": false } // babel.config.js: module.exports =…
370 2023-04-17 去围观CSS 选择器 选择前几个元素
方法:使用伪类选择器处理 1、选择第n个,n代表数字 :nth-child(n){ } 2、选择列表中的偶数的标签 :nth-child(2n){} :nth-child(even){ } 3、选择列表中的奇数的标签 :nth-child(2n - 1){ } :nth-child(odd){ } 4、【负方向范围】选择第1个…
350 2023-04-13 去围观