我在 Windows 和 "npm run build" 上收到部署错误

I get a deploy error on Windows with "npm run build"

我在终端中 运行 命令 npm run deploy 时遇到了这个错误,我该如何解决这个错误?

我认为这个 link 会对你有所帮助:

Filename too long in Git for Windows

您必须在您的终端中运行此命令:

git config --system core.longpaths true

(代题者贴出答案,移至答案部分。)

  1. 运行 Git Bash 作为管理员(右键单击应用程序快捷方式将显示 运行 作为管理员的选项)
  2. 运行 以下命令:git config --system core.longpaths true

注意:如果步骤 2 不起作用或出现任何错误,您也可以尝试 运行 此命令:git config --global core.longpaths true

这对我有用。