1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-04 11:36:37 -04:00

clean up next fonts

This commit is contained in:
2022-10-30 17:24:03 -04:00
parent 6520e6fa2e
commit b58a138ce2
7 changed files with 209 additions and 209 deletions

1
types/index.d.ts vendored
View File

@ -2,4 +2,3 @@ export * from "./note";
export * from "./project";
export * from "./stats";
export * from "./track";
export * from "./webpack";

11
types/webpack.d.ts vendored
View File

@ -1,11 +0,0 @@
// 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;
}