mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-07 08:02:40 +00:00
fix: fix BASE_URL build conf
This commit is contained in:
@@ -5,7 +5,7 @@ export function goto(path, options = {}) {
|
||||
if (svelteBase == '') {
|
||||
return svelteGoto(path, options)
|
||||
} else {
|
||||
const fullPath = path.startsWith(svelteBase) ? path : `${svelteBase}/${path}`
|
||||
const fullPath = path.startsWith(svelteBase) ? path : `${svelteBase}${path}`
|
||||
return svelteGoto(fullPath, options)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user