From cca10c6061118604e6f2e603e72f960044702354 Mon Sep 17 00:00:00 2001 From: "Fabian @ Blax Software" Date: Thu, 16 Apr 2026 08:52:52 +0200 Subject: [PATCH] fix: call setAppReady() automatically in createFromNuxtConfig --- src/nuxt.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/nuxt.ts b/src/nuxt.ts index 2a1174a..e1dd524 100644 --- a/src/nuxt.ts +++ b/src/nuxt.ts @@ -127,6 +127,9 @@ export function createFromNuxtConfig(options: NuxtNetworkingOptions = {}): { ;(globalThis as any).ws = ws } + // In Nuxt, the plugin IS the init — unblock gated sends immediately + ws.setAppReady() + return { api, ws } }