Rocky_Mountain_Vending/.pnpm-store/v10/files/ca/43a9ec2642ef6c73009c03ea68b01c64b0187fb44d1bf4eb2591540c4e26a6fc172f75c7c818f4aac15f0cab200477b3deab1b1319b5ce389bfeb1b961b00a
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

11 lines
345 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.nextFontError = nextFontError;
/**
* Throw NextFontError error. Used by the WellKnownErrorsPlugin to format errors thrown by next/font.
*/
function nextFontError(message) {
const err = new Error(message);
err.name = 'NextFontError';
throw err;
}