15 lines
261 B
Plaintext
Raw Permalink Normal View History

2025-06-04 09:42:48 +08:00
use Rack::Static,
urls: ["/test", "/locales"],
root: "public"
run lambda { |_env|
[
200,
{
"Content-Type" => "text/html",
"Cache-Control" => "public, max-age=86400",
},
File.open("public/index.html", File::RDONLY),
]
}