Last active
September 22, 2021 16:25
-
-
Save tmattacchione/14c6cfa1500bc1ab1a90a98b9d7217a0 to your computer and use it in GitHub Desktop.
SPA Route Fallback
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (ns app | |
| (:require [reitit.ring]) | |
| (defn secret-route | |
| [] | |
| ["/secret" {#_ ...stuff}]) | |
| (defn public-resource-route | |
| [] | |
| ["public/*" (reitit.ring/create-resource-handler)])]) | |
| (defn router [] | |
| (reitit.ring/router | |
| [(public-resource-route) | |
| (secret-route)])) | |
| (defn app [req] | |
| (-> req | |
| ((reitit.ring/ring-handler | |
| (router) | |
| (reitit.ring/routes | |
| (reitit.ring/create-resource-handler {:path "/"})))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment