摘要:
非常感谢 番薯有才 在飞书中的回复,以下核心步骤均由他提供: 使用 vite 创建一个 vue-ts 类型的项目,并安装所需的最小依赖: yarn create vite arco-design-vue-auto-import-tests --template vue-ts cd arco-desi 阅读全文
摘要:
https://linuxconfig.org/how-to-change-welcome-message-motd-on-ubuntu-18-04-server 阅读全文
摘要:
在空目录下新增 .gitkeep 的空文件 然后在 .gitignore 文件中新增: # Custom /xxdir/a 阅读全文
摘要:
在 ubuntu 中如果对某个文件进行了加权限操作,比如 sudo chmod +x up.sh,那么这个操作会产生 git 文件变更,导致 git 会产生未提交的更改,通过以下方式,将文件的 executable 权限加到 git 中,就可以自动给该文件授予 executable 权限: http 阅读全文
摘要:
Common | Decorator | Description | | | | | @IsDefined(value: any) | Checks if value is defined (!== undefined, !== null). This is the only decorator t 阅读全文
摘要:
Scaffolding Your First Vite Project https://github.com/vitejs/vite/tree/main/packages/create-vite 阅读全文
摘要:
Migration CRA to Vite | New React App using Vite 阅读全文
摘要:
简介 Discriminators:鉴别器是一种模式继承机制。它们使您能够在同一个基础 MongoDB 集合之上拥有多个具有重叠模式的模型。 实现步骤 创建基类 Schema // event.schema.ts import { Document } from 'mongoose'; import 阅读全文
摘要:
https://linuxize.com/post/change-git-commit-message git push --force <remoteName> <branchName> // remoteName: origin 阅读全文
摘要:
windows 启动 cmd,执行 yarn global bin 命令,然后在系统环境变量的 Path 中添加刚刚命令输出的路径。 ubuntu 执行以下命令修复: sudo nano ~/.bash_profile # 将此行添加到 ~/.bash_profile 文件中 export PATH 阅读全文