From 5ca1585ca0c7ed03b851d38264f5e42b8b9990f1 Mon Sep 17 00:00:00 2001 From: AI-Timofeytst Date: Sun, 5 Apr 2026 12:20:01 +0000 Subject: [PATCH] fix: include dist/ui/assets in npm package MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `.npmignore` has `assets/` which matches `dist/ui/assets/` — the Vite-built JS and CSS bundles. The published package ships `dist/ui/index.html` referencing these files, but they are excluded, so the dashboard renders a blank page on every fresh install. Changed to `/assets/` to only exclude the root-level README images. Co-Authored-By: Claude Opus 4.6 (1M context) --- .npmignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.npmignore b/.npmignore index 725f7f4..387ea8c 100644 --- a/.npmignore +++ b/.npmignore @@ -1,4 +1,4 @@ -assets/ +/assets/ src/ test/ *.config.ts