github.com/anakojm/hugo-katex@v0.0.0-20231023141351-42d6f5de9c0b/testscripts/commands/server_disablelivereload__config.txt (about)

     1  hugo server --renderToDisk &
     2  
     3  waitServer
     4  
     5  ! grep 'livereload' public/index.html
     6  
     7  stopServer
     8  ! stderr .
     9  
    10  -- hugo.toml --
    11  baseURL = "http://example.org/"
    12  disableKinds = ["RSS", "sitemap", "robotsTXT", "404", "taxonomy", "term"]
    13  disableLiveReload = true
    14  -- layouts/index.html --
    15  <html>
    16  <head>
    17  </head>
    18  <body>
    19  Home.
    20  </body>
    21  </html>