Files
vercel_dashboard_example/.pnpm-store/v11/files/ca/43a9ec2642ef6c73009c03ea68b01c64b0187fb44d1bf4eb2591540c4e26a6fc172f75c7c818f4aac15f0cab200477b3deab1b1319b5ce389bfeb1b961b00a
T
2026-05-12 14:53:15 +00:00

12 lines
345 B
Plaintext

"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;
}