mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 15:28:28 -04:00
12 lines
249 B
TypeScript
12 lines
249 B
TypeScript
// support webfonts statically imported by webpack via custom config in next.config.js:
|
|
|
|
declare module "*.woff" {
|
|
const content: string;
|
|
export default content;
|
|
}
|
|
|
|
declare module "*.woff2" {
|
|
const content: string;
|
|
export default content;
|
|
}
|