From 6cd284b8615398d2c97d3f6170f9ae19c4d439a0 Mon Sep 17 00:00:00 2001 From: Shlee Date: Wed, 16 Sep 2026 11:33:59 +0930 Subject: [PATCH] Configure npm to allow legacy peer dependencies Add legacy-peer-deps setting to .npmrc to allow installation despite peer dependency mismatch. --- .npmrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.npmrc b/.npmrc index 1d3d68382..fcfc0a8f8 100644 --- a/.npmrc +++ b/.npmrc @@ -1,4 +1,5 @@ ; vue-blurhash@0.1.4 declares a peer dependency on blurhash@^1.1.3, but the ; project uses blurhash@^2.x. The two are compatible in practice, so allow ; npm (v7+) to install despite the peer mismatch instead of failing. +; TODO - Remove after the new WebUI is release. legacy-peer-deps=true