From 2c38036005b6496e27b5948d9c3c9e70e5035c30 Mon Sep 17 00:00:00 2001 From: Lorenzo Setale Date: Wed, 15 Oct 2025 21:32:21 +0200 Subject: [PATCH] fix wrong path for assets (ex: manifest.json ) --- internal/glance/glance.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/glance/glance.go b/internal/glance/glance.go index 28771fa..cc96157 100644 --- a/internal/glance/glance.go +++ b/internal/glance/glance.go @@ -429,7 +429,7 @@ func (a *application) StaticAssetPath(asset string) string { } func (a *application) VersionedAssetPath(asset string) string { - return a.Config.Server.BaseURL + asset + + return a.Config.Server.BaseURL + "/" + asset + "?v=" + strconv.FormatInt(a.CreatedAt.Unix(), 10) }