Rocky_Mountain_Vending/.pnpm-store/v10/files/00/38ba79498a57b656623ee908804fb8016f6220529c9ffcf23965caf7837694e0e7508345f47a113c1cb8cecfae58e5300d3122f4115b3602be0202aea6bbb8
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
139 B
Text

export class Tracing {
categories = "";
enabled = false;
disable() {
this.enabled = false;
}
enable() {
this.enabled = true;
}
}