Added public fonts to routes as static assets

Necessary to ensure our link:https://trmnl.com/framework[Framework] can load all fonts as locally served from `public/fonts` on this server.

Issue: 287
Milestone: minor
This commit is contained in:
Brooke Kuhlmann
2026-03-18 06:33:40 -06:00
parent 0d79c8bb26
commit 7f6d8a8990
+1 -1
View File
@@ -162,7 +162,7 @@ module Terminus
slice(:health, at: "/up") { root to: "show" }
use Rack::Static, root: "public", urls: ["/.well-known/security.txt", "/uploads"]
use Rack::Static, root: "public", urls: ["/.well-known/security.txt", "/fonts", "/uploads"]
use Aspects::Screens::Designer::Middleware, pattern: %r(/preview/(?<name>.+))
end
# rubocop:enable Metrics/ClassLength