猜您还喜欢
如何让 GitHub Pages 中通过 Markdown 编辑的博客支持 Mermaid
少于 1 分钟阅读
最近在研究通过文本和代码创建图标和可视化,Mermaid功能比较丰富,Web支持也比较友好。如何让GitHub Pages中通过Markdown编辑的博客也支持Mermaid呢?
yarn create vite 报错:文件名、目录名或卷标语法不正确
1 分钟阅读
在搭建第一个 Vite 项目时,命令行报错:The filename, directory name, or volume label syntax is incorrect. (文件名、目录名或卷标语法不正确) 具体错误 D:\myspace> yarn create vite yarn create v...
TypeScript 如何把数组转换为字符串字面量联合类型?
少于 1 分钟阅读
想要把字符串数组转换为字符串字面量联合类型,可以先使用as const关键字定义只读字符串数组,然后对数组中的全部值使用typeof操作符。 // 只读的字符串数组 const namesArr = ["John", "Lily", "Roy"] as const; // 把数组转换为字符串字面量联合类型 ty...
node-sass 安装失败 Command failed 报错
2 分钟阅读
通过yarn install安装依赖包node-sass时总是报错,具体的错误原因为Command failed。应该如何解决这个问题呢? 报错信息 D:\testspace\test\node_modules\node-sass: Command failed. Exit code: 1 Command: ...