Rocky_Mountain_Vending/.pnpm-store/v10/files/17/fad1ae1b2a69f28229bb7e7bb3ab721b028dc7ab24636fb26db4633a61a7a7bccadcac9f1ebac4791c08a85a936b777ea992a2f469b8f885a43e2dec9c0694
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

7 lines
418 B
Text

import type { ServerResponse } from 'http';
import type { NextConfigComplete } from '../config-shared';
import type { NextUrlWithParsedQuery } from '../request-meta';
export declare function isChromeDevtoolsWorkspaceUrl(url: NextUrlWithParsedQuery): boolean;
export declare function handleChromeDevtoolsWorkspaceRequest(response: ServerResponse, opts: {
dir: string;
}, config: NextConfigComplete): Promise<void>;