Rocky_Mountain_Vending/.pnpm-store/v10/files/66/72ff7782b2274a5af6b14e4cad36ac93ce8e11088e09d5e61e1d5623af581d81a7b5cdeabea6a02b0398820001a283ed1a482f81dda7e9cf5bb53299100f40
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

21 lines
651 B
Text

/// <reference path="middleware-patch-console-prefix.d.ts"/>
import { prefix } from "config:middleware/patch-console-prefix";
import type { Middleware } from "./common";
// @ts-expect-error globalThis.console _does_ exist
globalThis.console = new Proxy(globalThis.console, {
get(target, p, receiver) {
if (p === "log" || p === "debug" || p === "info") {
return (...args: unknown[]) =>
Reflect.get(target, p, receiver)(prefix, ...args);
}
return Reflect.get(target, p, receiver);
},
});
const passthrough: Middleware = (request, env, _ctx, middlewareCtx) => {
return middlewareCtx.next(request, env);
};
export default passthrough;