Fork me on GitHub
#ring
<
2016-11-17
>
geoffs02:11:49

@olegakbarov: I think your issue is that route/resources doesn't work how you think it does (assuming that's an alias for compojure.route). Check out the documentation here https://weavejester.github.io/compojure/compojure.route.html#var-resources

geoffs02:11:49

What you probably want to do instead of resources, is just explicitly load the "index.thml" file and serve it. For instance (ANY "*" [] (ring.util.response/response (slurp (io/resource "index.html"))))

geoffs02:11:06

where io is

olegakbarov09:11:39

@geoffs thanks, ill give it a try