forked from filipg/gonito
19 lines
694 B
Haskell
19 lines
694 B
Haskell
|
module Settings.StaticFiles where
|
||
|
|
||
|
import Settings (appStaticDir, compileTimeAppSettings)
|
||
|
import Yesod.Static (staticFiles)
|
||
|
|
||
|
-- 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.
|
||
|
--
|
||
|
-- For example, to refer to @static/js/script.js@ via an identifier, you'd use:
|
||
|
--
|
||
|
-- js_script_js
|
||
|
--
|
||
|
-- If the identifier is not available, you may use:
|
||
|
--
|
||
|
-- StaticFile ["js", "script.js"] []
|
||
|
staticFiles (appStaticDir compileTimeAppSettings)
|