eidolon/Settings/StaticFiles.hs

31 lines
1.3 KiB
Haskell
Raw Normal View History

2014-08-09 18:33:22 +00:00
module Settings.StaticFiles where
import qualified Yesod.Static as Static
import Settings (appStaticDir, compileTimeAppSettings)
2014-08-09 18:33:22 +00:00
-- | use this to create your static file serving site
-- staticSite :: IO Static.Static
-- staticSite = if development then Static.staticDevel staticDir
-- else Static.static staticDir
2014-08-09 18:33:22 +00:00
-- | This generates easy references to files in the static directory at compile time,
-- giving you compile-time verification that referenced files exist.
-- Warning: any files added to your static directory during run-time can't be
-- accessed this way. You'll have to use their FilePath or URL to access them.
2014-12-28 06:12:25 +00:00
Static.staticFiles (appStaticDir compileTimeAppSettings)
2014-08-09 18:33:22 +00:00
-- combineSettings :: CombineSettings
-- combineSettings = def
--
-- -- The following two functions can be used to combine multiple CSS or JS files
-- -- at compile time to decrease the number of http requests.
-- -- Sample usage (inside a Widget):
-- --
-- -- > $(combineStylesheets 'StaticR [style1_css, style2_css])
--
-- combineStylesheets :: Name -> [Route Static] -> Q Exp
-- combineStylesheets = combineStylesheets' development combineSettings
--
-- combineScripts :: Name -> [Route Static] -> Q Exp
-- combineScripts = combineScripts' development combineSettings