Rocky_Mountain_Vending/.pnpm-store/v10/files/ed/139a09af40b32d7e31e7f17d220048b5d6dde2c17a417057267311766320e537631d7a7994063f7d48da07504597f5d494da877a79d247c83fcae4a8488081
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

57 lines
880 B
Text

import {
_ignoreErrors,
_stderr,
_stderrErrorHandler,
_stdout,
_stdoutErrorHandler,
_times,
Console
} from "unenv/node/console";
export {
Console,
_ignoreErrors,
_stderr,
_stderrErrorHandler,
_stdout,
_stdoutErrorHandler,
_times
} from "unenv/node/console";
const workerdConsole = globalThis["console"];
export const {
assert,
clear,
// @ts-expect-error undocumented public API
context,
count,
countReset,
// @ts-expect-error undocumented public API
createTask,
debug,
dir,
dirxml,
error,
group,
groupCollapsed,
groupEnd,
info,
log,
profile,
profileEnd,
table,
time,
timeEnd,
timeLog,
timeStamp,
trace,
warn
} = workerdConsole;
Object.assign(workerdConsole, {
Console,
_ignoreErrors,
_stderr,
_stderrErrorHandler,
_stdout,
_stdoutErrorHandler,
_times
});
export default workerdConsole;