From a3b17e04a58dc734ac729e0f38c313af73217db1 Mon Sep 17 00:00:00 2001 From: MindfulLearner Date: Thu, 23 Jul 2026 12:01:49 +0200 Subject: [PATCH] bump changeset --- .changeset/thin-zebras-press.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/thin-zebras-press.md diff --git a/.changeset/thin-zebras-press.md b/.changeset/thin-zebras-press.md new file mode 100644 index 000000000..c73c5fb1a --- /dev/null +++ b/.changeset/thin-zebras-press.md @@ -0,0 +1,5 @@ +--- +"@effect-app/vue-components": patch +--- + +Fix `FixedNuxtErrorBoundary` losing the app's router: `vue-router` was missing from `vite.config.mts`'s Rollup `external` list, so it got bundled into the library output with its own `Symbol("router")` injection key a different instance from the host app's real `routerKey`. `useRouter()` inside the component therefore always returned `undefined`, crashing on `.afterEach` (500 in SSR). `vue-router` is now external like `vue`, so the component resolves the host app's actual router instance.