Rocky_Mountain_Vending/.pnpm-store/v10/files/f8/445754b8dd851123c223c89fe9012d57d351ae7fdba3c3109ad213bf32f5e3861158395632550a1f4c94b58bdd88bf7426960d75c4a45a9c427749807b0504
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

50 lines
1.2 KiB
Text

import { notImplementedClass, notImplemented } from "../_internal/utils.mjs";
import noop from "../mock/noop.mjs";
export const close = noop;
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 open = () => ({
__unenv__: true,
[Symbol.dispose]() {
return Promise.resolve();
}
});
export const url = () => undefined;
export const waitForDebugger = noop;
export const Session = /*@__PURE__*/ notImplementedClass("inspector.Session");
export const Network = {
loadingFailed: /*@__PURE__*/ notImplemented("inspector.Network.loadingFailed"),
loadingFinished: /*@__PURE__*/ notImplemented("inspector.Network.loadingFinished"),
requestWillBeSent: /*@__PURE__*/ notImplemented("inspector.Network.requestWillBeSent"),
responseReceived: /*@__PURE__*/ notImplemented("inspector.Network.responseReceived")
};
export default {
Session,
close,
console,
open,
url,
waitForDebugger,
Network
};