Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 551ffaa commit b3ced3dCopy full SHA for b3ced3d
packages/nuxt/src/core/runtime/nitro/dev-server-logs.ts
@@ -25,7 +25,9 @@ export default (nitroApp: NitroApp) => {
25
}
26
27
onConsoleLog((_log) => {
28
- const ctx = asyncContext.use()
+ const ctx = asyncContext.tryUse()
29
+ if (!ctx) { return }
30
+
31
const stack = getStack()
32
if (stack.includes('runtime/vite-node.mjs')) { return }
33
0 commit comments