mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
ef4dfcec6c
Fix #1406 Instead of loading the file from http://localhost:port/, it can be loaded from /.
18 lines
478 B
Go
18 lines
478 B
Go
package transform
|
|
|
|
import (
|
|
"bytes"
|
|
)
|
|
|
|
func LiveReloadInject(ct contentTransformer) {
|
|
match := []byte("</body>")
|
|
replace := []byte(`<script data-no-instant>document.write('<script src="/livereload.js?mindelay=10"></' + 'script>')</script></body>`)
|
|
|
|
newcontent := bytes.Replace(ct.Content(), match, replace, -1)
|
|
if len(newcontent) == len(ct.Content()) {
|
|
match := []byte("</BODY>")
|
|
newcontent = bytes.Replace(ct.Content(), match, replace, -1)
|
|
}
|
|
|
|
ct.Write(newcontent)
|
|
}
|