mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
9c6d377872
Fixes #11987
18 lines
354 B
Text
18 lines
354 B
Text
hugo server --renderToMemory &
|
|
|
|
waitServer
|
|
stopServer
|
|
! stderr .
|
|
|
|
exists hugo_stats.json
|
|
|
|
-- hugo.toml --
|
|
title = "Hugo Server Test"
|
|
baseURL = "https://example.org/"
|
|
disableKinds = ["taxonomy", "term", "sitemap"]
|
|
[module]
|
|
[[module.mounts]]
|
|
source = "hugo_stats.json"
|
|
target = "assets/watching/hugo_stats.json"
|
|
-- layouts/index.html --
|
|
<body>Home</body>
|