From 69ed7ae3e8bd54ac75f05581d722d65b89e14336 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Thu, 12 Feb 2026 15:58:38 -0500 Subject: [PATCH] fix: bundle node-forge to prevent frontend loading error The Headlamp plugin build system was externalizing node-forge because it was in dependencies. Since Headlamp doesn't provide node-forge as a shared library, the plugin would fail to load in the browser. Solution: Add .pluginrc with empty externals to force bundling all dependencies. Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude Co-Authored-By: Happy --- headlamp-sealed-secrets/.pluginrc | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 headlamp-sealed-secrets/.pluginrc diff --git a/headlamp-sealed-secrets/.pluginrc b/headlamp-sealed-secrets/.pluginrc new file mode 100644 index 0000000..9cb5f3e --- /dev/null +++ b/headlamp-sealed-secrets/.pluginrc @@ -0,0 +1,3 @@ +{ + "externals": {} +}