fix: slides don't work on published sites that aren't under '/'

Fixes https://github.com/logseq/publish-spa/issues/11
This commit is contained in:
Gabriel Horner
2023-12-01 13:53:50 -05:00
committed by Andelf
parent 7ec93f0f16
commit 045a59ea10

View File

@@ -80,7 +80,7 @@
(do
(reset! *loading? true)
(loader/load
(config/asset-uri "/static/js/reveal.js")
(config/asset-uri (if config/publishing? "static/js/reveal.js" "/static/js/reveal.js"))
(fn []
(reset! *loading? false)
(render!)))))