diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/hakyll/hakyll.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/hakyll/hakyll.hs b/examples/hakyll/hakyll.hs index 5ee755f..df92ddd 100644 --- a/examples/hakyll/hakyll.hs +++ b/examples/hakyll/hakyll.hs @@ -11,7 +11,7 @@ main = hakyll $ do compile compressCssCompiler -- Static directories - forM_ ["images/*", "examples/*", "reference/*"] $ \f -> match f $ do + forM_ ["images/*", "examples/*", "reference/**"] $ \f -> match f $ do route idRoute compile copyFileCompiler |