安装nuxt4的时候报错:Failed to download https://raw.githubusercontent.com/nuxt/starter/templates/templates/minimal.json: TypeError: fetch failed

Failed to download https://raw.githubusercontent.com/nuxt/starter/templates/templates/minimal.json: TypeError: fetch failed

  

众所周知的原因,需要魔法一下。

Windows CMD

set HTTP_PROXY=http://127.0.0.1:1080
set HTTPS_PROXY=http://127.0.0.1:1080
set NODE_USE_ENV_PROXY=1

Windows PowerShell

$env:HTTP_PROXY="http://127.0.0.1:1080"
$env:HTTPS_PROXY="http://127.0.0.1:1080"
$env:NODE_USE_ENV_PROXY="1"

 

posted @ 2026-02-23 16:09  alpiny  阅读(33)  评论(0)    收藏  举报