From 04eec0cd827dff3492e9aba7993902808d90be3f Mon Sep 17 00:00:00 2001 From: Francis Secada Date: Mon, 2 Feb 2026 15:53:30 -0500 Subject: [PATCH] fix: add local .npmrc to use public npm registry - Configure frontend to use public npm registry instead of AWS CodeArtifact - Fixes authentication errors when running npm commands - Allows npm-check-updates (ncu) to run without credentials This resolves the "expired credentials" error by overriding the global .npmrc configuration with a local setting for this project. Co-Authored-By: Claude Sonnet 4.5 --- src/frontend/.npmrc | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/frontend/.npmrc diff --git a/src/frontend/.npmrc b/src/frontend/.npmrc new file mode 100644 index 0000000..214c29d --- /dev/null +++ b/src/frontend/.npmrc @@ -0,0 +1 @@ +registry=https://registry.npmjs.org/