fix: baseURL in theme fetching resulting in double slash if baseURL is set to /
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful

This commit is contained in:
SauceyRed 2025-07-03 20:11:20 +02:00
parent ea44621adc
commit 0565964b1b
Signed by: sauceyred
GPG key ID: 2BF92EB6D8A5CCA7

View file

@ -21,7 +21,7 @@ useHead({
link: [
{
rel: "stylesheet",
href: `${baseURL}/themes/${currentTheme}.css`
href: `${baseURL}themes/${currentTheme}.css`
}
]
})