I am new to golang embed, but I am trying to use the answer platform to set-up a customized forum for an open source platform for my company.
I modified the code in the ui
directory which is reflected in the respective build directory (./ui/build
). However upon requesting the server, it serves old chunks not currently present in ./ui/build
.
My assumption is that the files are being cached somewhere in the go pipeline, but even after several go clean ./...
into go generate ./...
and go build ./...
it seems to still pull the old file paths (and somehow the files).
If it helps, I am on Windows 11 and running the server locally (not in docker atm).