mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-11-24 06:54:03 +03:00
24 lines
393 B
Elm
24 lines
393 B
Elm
module Site exposing (canonicalUrl, config)
|
|
|
|
import DataSource exposing (DataSource)
|
|
import Head
|
|
import SiteConfig exposing (SiteConfig)
|
|
|
|
|
|
config : SiteConfig
|
|
config =
|
|
{ canonicalUrl = canonicalUrl
|
|
, head = head
|
|
}
|
|
|
|
|
|
canonicalUrl : String
|
|
canonicalUrl =
|
|
"https://hacker-news-elm-pages.netlify.app"
|
|
|
|
|
|
head : DataSource (List Head.Tag)
|
|
head =
|
|
[]
|
|
|> DataSource.succeed
|