Rocky_Mountain_Vending/.pnpm-store/v10/files/29/c1f6f02b5407ce19eaed4089d6a4a52e58e69ea726fc9f939bd75497e15c77afe29a41f727904a7921b344023d707a6de64a95481e97f41b7d57da515dd2e1
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

40 lines
1 KiB
Text

import { notImplemented, notImplementedClass } from "../../_internal/utils.mjs";
import noop from "../../mock/noop.mjs";
export const console = {
debug: noop,
error: noop,
info: noop,
log: noop,
warn: noop,
dir: noop,
dirxml: noop,
table: noop,
trace: noop,
group: noop,
groupCollapsed: noop,
groupEnd: noop,
clear: noop,
count: noop,
countReset: noop,
assert: noop,
profile: noop,
profileEnd: noop,
time: noop,
timeLog: noop,
timeStamp: noop
};
export const Network = /*@__PURE__*/ notImplementedClass("inspectorPromises.Network");
export const Session = /*@__PURE__*/ notImplementedClass("inspectorPromises.Session");
export const url = /*@__PURE__*/ notImplemented("inspectorPromises.url");
export const waitForDebugger = /*@__PURE__*/ notImplemented("inspectorPromises.waitForDebugger");
export const open = /*@__PURE__*/ notImplemented("inspectorPromises.open");
export const close = /*@__PURE__*/ notImplemented("inspectorPromises.close");
export default {
close,
console,
Network,
open,
Session,
url,
waitForDebugger
};