2025-06-16 17:24:23 +08:00

15 lines
261 B
Ruby

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),
]
}