For AI agents: the complete documentation index is available at https://mfdoctor.kevinbeier.com/1.0.0/llms.txt, the full documentation bundle is available at https://mfdoctor.kevinbeier.com/1.0.0/llms-full.txt, and this page is available as Markdown at https://mfdoctor.kevinbeier.com/1.0.0/rules/bridge/vue-ssr-fresh-context.md.

bridge/vue-ssr-fresh-context

  • Category: reliability
  • Default severity: warning

Issue

Reusing one Vue app/router/store across SSR requests leaks request state between users.

How to fix it

Create per-request app/router/store factories (or use Bridge SSR hydration helpers). Set ssrMode: "browser-only" when not SSR, or turn the rule "off".

Suppress or retarget with rules["bridge/vue-ssr-fresh-context"] set to "off" or a severity — see Suppressions and allowlists.

Sources