psb/app/Config.hs
2024-12-07 17:37:40 -05:00

14 lines
325 B
Haskell

module Config where
outputDir :: String
outputDir = "publish"
assetGlobs :: [String]
assetGlobs = ["static//*", "robots.txt"]
-- CAN ONLY BE TYPST DOCS UNLESS YOU CHANGE THINGS AT THE `pages` RULE in `Main.hs
pagePaths :: [String]
pagePaths = ["links.typ"]
postGlobs :: [String]
postGlobs = ["posts/*.typ", "posts/*.md"]