Rocky_Mountain_Vending/.pnpm-store/v10/files/e6/e2f4ce18ddb006490c87b4bdd0d70de7d24dddc84c3518daf33082f159c6f0422bc0d1d40d7154556c6136a02c52fa9df122c5713b939fb7b755e0a117e1c2
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
194 B
Text

'use strict';
if (process.env.NODE_ENV === 'production') {
module.exports = require('./cjs/scheduler.production.js');
} else {
module.exports = require('./cjs/scheduler.development.js');
}