mirror of
https://code.naskya.net/repos/ndqEd
synced 2025-01-11 21:35:08 +09:00
33 lines
1.2 KiB
Haskell
33 lines
1.2 KiB
Haskell
{- This file is part of Vervis.
|
|
-
|
|
- Written in 2016 by fr33domlover <fr33domlover@riseup.net>.
|
|
-
|
|
- ♡ Copying is an act of love. Please copy, reuse and share.
|
|
-
|
|
- The author(s) have dedicated all copyright and related and neighboring
|
|
- rights to this software to the public domain worldwide. This software is
|
|
- distributed without any warranty.
|
|
-
|
|
- You should have received a copy of the CC0 Public Domain Dedication along
|
|
- with this software. If not, see
|
|
- <http://creativecommons.org/publicdomain/zero/1.0/>.
|
|
-}
|
|
|
|
module Vervis.Settings.StaticFiles where
|
|
|
|
import Vervis.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)
|