1
0
mirror of https://github.com/gohugoio/hugo.git synced 2024-05-11 05:54:58 +00:00
gohugoio-hugo/testscripts/commands/server__watch_moduleconfig.txt
2024-02-05 14:04:17 +01:00

20 lines
438 B
Plaintext

hugo server --renderToMemory --disableLiveReload &
waitServer
stopServer
wait
! stderr .
stdout 'Watching for config changes in.*mytheme'
-- hugo.toml --
title = "Hugo Server Test"
baseURL = "https://example.org/"
disableKinds = ["section", "page", "taxonomy", "term", "RSS", "sitemap", "robotsTXT", "404"]
theme = "mytheme"
-- layouts/index.html --
foo: {{ .Site.Params.foo }}
-- themes/mytheme/hugo.toml --
[params]
foo = "bar"