You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but when I change anything in "page/index" I have to manually refresh. Checking the source code in the browser via "View Source" shows no injected script for live reload. The layout-default I am rendering the page with contains a <body> element.
# Config file for [Air](https://github.com/cosmtrek/air) in TOML format# Working directory# . or absolute path, please note that the directories following must be under root.root = "."tmp_dir = "tmp"
[build]
cmd = "task build"bin = "main"full_bin = ""include_ext = ["go", "tpl", "tmpl", "html"]
exclude_dir = ["tmp"]
include_dir = ["src"]
exclude_file = []
exclude_unchanged = falsefollow_symlink = falselog = "air.log"delay = 1000stop_on_error = truesend_interrupt = true# Delay after sending Interrupt signalkill_delay = 0# mspoll = falsepoll_interval = 500
[log]
time = truesilent = false
[color]
main = "magenta"watcher = "cyan"build = "yellow"runner = "green"
[misc]
clean_on_exit = true
[screen]
clear_on_rebuild = truekeep_scroll = true
[proxy]
enabled = trueproxy_port = 3001app_port = 3000
The text was updated successfully, but these errors were encountered:
Live Reload refresh isn't working in the browser, the go app rebuilds on any changes but the browser isn't reloading.
With GoFiber I am creating a server like
Rendering the page on route /
but when I change anything in "page/index" I have to manually refresh. Checking the source code in the browser via "View Source" shows no injected script for live reload. The
layout-default
I am rendering the page with contains a<body>
element.The text was updated successfully, but these errors were encountered: