Skip to content

Commit

Permalink
Fix type application parse error on GHC 9+ (#769)
Browse files Browse the repository at this point in the history
  • Loading branch information
georgefst authored Feb 20, 2025
1 parent dfde8ea commit 48ea6fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion haskell-miso.org/server/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ main = do
compress = gzip def { gzipFiles = GzipCompress }

app :: Application
app = serve (Proxy @ API) (static :<|> serverHandlers :<|> pure misoManifest :<|> pure robotsTxt :<|> Tagged handle404)
app = serve (Proxy @API) (static :<|> serverHandlers :<|> pure misoManifest :<|> pure robotsTxt :<|> Tagged handle404)
where
static = serveDirectoryWith (defaultWebAppSettings "static")

Expand Down

0 comments on commit 48ea6fb

Please sign in to comment.