mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
9c6d377872
Fixes #11987
20 lines
No EOL
306 B
Text
20 lines
No EOL
306 B
Text
hugo server --disableLiveReload &
|
|
|
|
waitServer
|
|
|
|
! grep 'livereload' public/index.html
|
|
|
|
stopServer
|
|
! stderr .
|
|
|
|
-- hugo.toml --
|
|
baseURL = "http://example.org/"
|
|
disableKinds = ["RSS", "sitemap", "robotsTXT", "404", "taxonomy", "term"]
|
|
-- layouts/index.html --
|
|
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
Home.
|
|
</body>
|
|
</html> |