From d296d1245f24e73692c586da331320c92b0cf7b5 Mon Sep 17 00:00:00 2001 From: samanhappy Date: Sat, 12 Apr 2025 22:59:08 +0800 Subject: [PATCH] fix: update npm registry URL to use official npm registry --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index e165453..47cb5c1 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,6 +1,6 @@ #!/bin/bash -NPM_REGISTRY=${NPM_REGISTRY:-https://registry.npmmirror.com/} +NPM_REGISTRY=${NPM_REGISTRY:-https://registry.npmjs.org/} echo "Setting npm registry to ${NPM_REGISTRY}" npm config set registry "$NPM_REGISTRY"