summaryrefslogtreecommitdiff
path: root/src/lib/RenderHtml.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/RenderHtml.hs')
-rw-r--r--src/lib/RenderHtml.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/RenderHtml.hs b/src/lib/RenderHtml.hs
index d1d884ea..82d7ef2b 100644
--- a/src/lib/RenderHtml.hs
+++ b/src/lib/RenderHtml.hs
@@ -276,12 +276,12 @@ buildMainHtml :: FilePath -> Html
buildMainHtml jsonPath = docTypeHtml $ do
H.head do
H.meta ! charset "UTF-8"
- H.link ! rel "stylesheet" ! type_ "text/css" ! href "/static/style.css"
+ H.link ! rel "stylesheet" ! type_ "text/css" ! href "/dex-lang/static/style.css"
H.body ! onload (textValue $ fromString jsSource) $ do
H.div mempty ! At.id "minimap"
H.div "(hover over code for more information)" ! At.id "hover-info"
H.div mempty ! At.id "main-output"
- H.script ! src "/static/index.js" $ mempty
+ H.script ! src "/dex-lang/static/index.js" $ mempty
where
jsSource :: String
jsSource = "render('Static', '/" ++ jsonPath ++ "');"