added fonts
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.nextFontError = void 0;
|
||||
/**
|
||||
* 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;
|
||||
}
|
||||
exports.nextFontError = nextFontError;
|
||||
Reference in New Issue
Block a user