fix wrong path for assets (ex: manifest.json )

pull/847/head
Lorenzo Setale 2025-10-15 21:32:21 +07:00
parent cae90d16ba
commit 2c38036005
No known key found for this signature in database
GPG Key ID: 22B87A6187E20096
1 changed files with 1 additions and 1 deletions

@ -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)
}