require 'rack' use Rack::Static, urls: %w(/assets /data) run lambda { |env| [ 200, { 'Content-Type' => 'text/html', 'Cache-Control' => 'public, max-age=86400' }, File.open('index.html', File::RDONLY) ] }