Import AsyncLocalStorage in server components
Unanswered
Sun bear posted this in #help-forum
Sun bearOP
anyone know if there's a way to import the Node AsyncLocalStorage package in the server components bundle?
If I do
then I get a bundling error about the "node:" scheme not being recognized by Webpack:
If I drop the
If I do
import { AsyncLocalStorage } from 'node:async_hooks'then I get a bundling error about the "node:" scheme not being recognized by Webpack:
Module build failed: UnhandledSchemeError: Reading from "node:async_hooks" is not handled by plugins (Unhandled scheme).If I drop the
node: prefix then I get a module not found error:Module not found: Can't resolve 'async_hooks'