Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
32 lines
833 B
Text
32 lines
833 B
Text
import {
|
|
asyncWrapProviders,
|
|
createHook,
|
|
executionAsyncId,
|
|
executionAsyncResource,
|
|
triggerAsyncId
|
|
} from "unenv/node/async_hooks";
|
|
export {
|
|
asyncWrapProviders,
|
|
createHook,
|
|
executionAsyncId,
|
|
executionAsyncResource,
|
|
triggerAsyncId
|
|
} from "unenv/node/async_hooks";
|
|
const workerdAsyncHooks = process.getBuiltinModule("node:async_hooks");
|
|
export const { AsyncLocalStorage, AsyncResource } = workerdAsyncHooks;
|
|
export default {
|
|
/**
|
|
* manually unroll unenv-polyfilled-symbols to make it tree-shakeable
|
|
*/
|
|
// @ts-expect-error @types/node is missing this one - this is a bug in typings
|
|
asyncWrapProviders,
|
|
createHook,
|
|
executionAsyncId,
|
|
executionAsyncResource,
|
|
triggerAsyncId,
|
|
/**
|
|
* manually unroll workerd-polyfilled-symbols to make it tree-shakeable
|
|
*/
|
|
AsyncLocalStorage,
|
|
AsyncResource
|
|
};
|