Rocky_Mountain_Vending/.pnpm-store/v10/files/01/bca8d67829cc5bdfd48201fdf62b80586bbff5e61484fe474e8f17eaad4aff44ce8e0f938e07a06a2aec2575e86d45d6699c6f340fc5d8c98c2102b1e34aed
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

13 lines
No EOL
294 B
Text

let errorOnce = (_)=>{};
if (process.env.NODE_ENV !== 'production') {
const errors = new Set();
errorOnce = (msg)=>{
if (!errors.has(msg)) {
console.error(msg);
}
errors.add(msg);
};
}
export { errorOnce };
//# sourceMappingURL=error-once.js.map