replace asset() with resolve()

This commit is contained in:
maxDorninger
2025-10-27 20:39:15 +01:00
parent 0cae36dcac
commit b5ac036103
2 changed files with 2 additions and 3 deletions

View File

@@ -10,7 +10,7 @@
<svelte:head>
<title>MediaManager</title>
<meta content="Smart PVR for movies and TV shows" name="description" />
<link href={asset('/logo.svg')} rel="icon" type="image/svg" />
<link href={resolve('/logo.svg', {})} rel="icon" type="image/svg" />
</svelte:head>
<ModeWatcher />

View File

@@ -15,8 +15,7 @@ const config = {
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
adapter: adapter({ fallback: '404.html' }),
paths: {
base: base,
assets: base
base: base
}
}
};