jenjen75
jenjen75
> With #127 ([v3.7.3](https://github.com/nuxt/cli/releases/tag/v3.7.3)), you can hook into the `listen` event to register a custom ws handler. Check out [this example](https://github.com/nuxt/cli/blob/main/playground/modules/ws.ts) for usage. > > Will be working on some...
temporary workaround : ```ts import type { NitroErrorHandler } from "nitropack" export default defineNitroErrorHandler((...args: Parameters) => { const [error, event] = args // code here }) ```
workaround with "next tick because `hide` is sync whereas it perform async ```ts this.instance.hide(); Promise.resolve(() => { this.instance.dispose(); }); ```
try this when you build for lambda (arm architecture): ``` npm install --config.platform=linux --config.architecture=arm64v8 ```
Hello @darkweak , I migrate from nginx to caddy with cache-handler. I struggled to understand why there is a memory leak. It's good to know that the default storage doesn't...