Rocky_Mountain_Vending/.pnpm-store/v10/files/04/76fbe82e3916a4906f4aa7ad21188496d804c49c625d8824ec098219a2023c0dfdedc54457a70bf090bdce3a0cc2d8fd237c94e519ee223ab2a7528d70b732
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

25 lines
424 B
Text

const noop = () => {};
const debug = () => console.debug;
Object.assign(debug, {
default: debug,
coerce: noop,
disable: noop,
enable: noop,
enabled: noop,
extend: debug,
humanize: noop,
destroy: noop,
init: noop,
log: console.debug,
formatArgs: noop,
save: noop,
load: noop,
useColors: noop,
colors: [],
inspectOpts: {},
names: [],
skips: [],
formatters: {},
selectColors: noop
});
export default debug;