Rocky_Mountain_Vending/.pnpm-store/v10/files/68/4ab6dde9e1fef29ee9700227d390db4fa74c4e11f86b12fa587ab240facbcc7c22ec66f870ce3991a58754332d33f1b6550ac2c174311cbc178124348e193a
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
214 B
JavaScript

#!/usr/bin/env node
export type NextTelemetryOptions = {
enable?: boolean;
disable?: boolean;
};
declare const nextTelemetry: (options: NextTelemetryOptions, arg: string) => void;
export { nextTelemetry };