mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-12-27 22:01:48 +03:00
20 lines
340 B
Elm
20 lines
340 B
Elm
module Site exposing (config)
|
|
|
|
import DataSource exposing (DataSource)
|
|
import Head
|
|
import SiteConfig exposing (SiteConfig)
|
|
|
|
|
|
config : SiteConfig
|
|
config =
|
|
{ canonicalUrl = "https://elm-pages.com"
|
|
, head = head
|
|
}
|
|
|
|
|
|
head : DataSource (List Head.Tag)
|
|
head =
|
|
[ Head.sitemapLink "/sitemap.xml"
|
|
]
|
|
|> DataSource.succeed
|