Rocky_Mountain_Vending/.pnpm-store/v10/files/80/9a48e2f48ec9426e8a8c37a7a6e723d76c6906e01230f052ced857aded266db2dffff7e6c6f8e38346751fd469a5117b426188ae8d8668bc8db82e497ce72d
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

10 lines
336 B
Text

import { NodePolyfillsOptions } from './modules';
export default function (opts?: NodePolyfillsOptions): {
name: string;
resolveId(importee: string, importer: string): {
id: any;
moduleSideEffects: boolean;
} | null;
load(id: string): string | undefined;
transform(code: string, id: string): any;
};