From ecb13bb1343d14a7b42a55ee12ae0c15a575975f Mon Sep 17 00:00:00 2001 From: kj_sh604 Date: Mon, 16 Mar 2026 13:53:01 -0400 Subject: refactor: src/font.php --- src/font.php | 50 -------------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 src/font.php (limited to 'src/font.php') diff --git a/src/font.php b/src/font.php deleted file mode 100644 index d12ceb8..0000000 --- a/src/font.php +++ /dev/null @@ -1,50 +0,0 @@ - 'font/ttf', - 'otf' => 'font/otf', - 'woff' => 'font/woff', - 'woff2' => 'font/woff2', - default => 'application/octet-stream', -}; - -header("Content-Type: $mime"); -header('Cache-Control: public, max-age=31536000, immutable'); -header('Content-Length: ' . filesize($file)); -readfile($file); -- cgit v1.2.3