gpt4 book ai didi

node.js - 下一个 JS : Error: EPERM: operation not permitted, rmdir

转载 作者:行者123 更新时间:2023-12-05 09:30:26 30 4
gpt4 key购买 nike

我有一个可以运行的 Next.js 应用程序,当我离开它并返回时,我得到了

  errno: -4048,
code: 'EPERM',
syscall: 'rmdir',
path: 'C:\\Users\\gmacr\\Google Drive\\Optical-Font-Website\\O\\.next\\server\\pages'
}
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! opt@0.1.0 dev: `next dev`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the opt@0.1.0 dev script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\gmacr\AppData\Roaming\npm-cache\_logs\2021-10-16T21_14_26_886Z-debug.log

我尝试使用 npm clean cache。使用 Windows 10。当我创建一个新的 Next 应用程序并将我的工作文件复制到该程序上时,该程序运行无误,直到我离开它一段时间并返回它...

最佳答案

当项目目录位于“Google Drive”中时,我会遇到这种情况!!

您所要做的就是删除“.next” 目录。

或者在package.json中添加脚本删除(windows 10测试):

 "scripts": {
"dev": "(if exist .next rd /s /q .next 2>nul) && next dev",
},

关于node.js - 下一个 JS : Error: EPERM: operation not permitted, rmdir,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69599616/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com