摘要: MDN官方文档 阅读全文
posted @ 2024-02-19 14:30 卑面派对 阅读(1) 评论(0) 推荐(0) 编辑
摘要: "vue/no-unused-components": "off" 阅读全文
posted @ 2024-02-02 15:48 卑面派对 阅读(7) 评论(0) 推荐(0) 编辑
摘要: npm config set strict-ssl false 阅读全文
posted @ 2024-01-23 09:37 卑面派对 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 掘金更改头像参考 阅读全文
posted @ 2023-11-17 16:36 卑面派对 阅读(6) 评论(0) 推荐(0) 编辑
摘要: win7系统支持的最后Node版本是v12 win7系统安装更高版本 1、下载需要的版本,如:v16.14.0,注意需要下载zip包 2、关闭所有命令行,最好注销或重启电脑后在继续下面步骤 3、解压包,替换node路径 C:\Program Files\nodejs\,全部覆盖。或者解压后放到nvm 阅读全文
posted @ 2023-11-15 14:33 卑面派对 阅读(882) 评论(0) 推荐(0) 编辑
摘要: 1、报错 2、解决方案 .stylelintrc.js文件中配置declaration-block-trailing-semicolon, 将stylelint该条规则关闭。 { + 'declaration-block-trailing-semicolon': null } 阅读全文
posted @ 2023-11-02 14:35 卑面派对 阅读(166) 评论(0) 推荐(0) 编辑
摘要: tsconfig.json配置 { + "allowSyntheticDefaultImports": true } 阅读全文
posted @ 2023-11-02 10:21 卑面派对 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 解决方法: git init git config http.postBuffer 524288000 git remote add origin <REPO URL> git pull origin master(主分支) 参考 阅读全文
posted @ 2023-10-27 15:56 卑面派对 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 1、环境 系统: win7 node: v12.20.0 node版本不支持可选链操作符(?.),所有很多报错需要依赖包降级 2、package.json "stylelint": "^14.16.1", // node版本不支持v15 "stylelint-config-prettier": "^ 阅读全文
posted @ 2023-10-23 11:10 卑面派对 阅读(655) 评论(0) 推荐(0) 编辑
摘要: 1、如果你使用的yarn来安装依赖包,它提供了why命令来查看包依赖关系,使用方式为yarn why [package] 2、npm: npm install -g npm-why. 执行 npm-why [package] 阅读全文
posted @ 2023-10-20 11:39 卑面派对 阅读(21) 评论(0) 推荐(0) 编辑