Skip to content

Instantly share code, notes, and snippets.

@jacobappleton
Created September 8, 2015 04:35
Show Gist options
  • Save jacobappleton/a3e83dfcbdde556c0e6e to your computer and use it in GitHub Desktop.
Save jacobappleton/a3e83dfcbdde556c0e6e to your computer and use it in GitHub Desktop.
A resource route in Spray.IO
pathPrefix("app") {
pathPrefix("assets") {
getFromResourceDirectory("web/assets/")
} ~ {
getFromResource("web/index.html")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment