本文以Windows 11为例
2023年04月05日
无法加载文件 C:\Users\Coz\Documents\WindowsPowerShell\profile.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅
https:/go.microsoft.com/fwlink/?LinkID=135170 中的 about_Execution_Policies。
2022年03月17日
node_modules一般有很多碎文件,删除的时候很慢,在linux下可以使用rm -rf node_modules来快速删除文件夹,在windows也有类似命令。
在你的项目目录下打开cmd ,使用rd /s /q node_modules可以快速删除
如果是powershell,使用rd -r node_modules命令