fix: search component missing from PROD environment (#268)
Update search component to only be client side for svelte.
This commit is contained in:
parent
081ec35b07
commit
2244a77935
1 changed files with 1 additions and 1 deletions
|
|
@ -44,7 +44,7 @@ let links: NavBarLink[] = navBarConfig.links.map(
|
||||||
</div>
|
</div>
|
||||||
<div class="flex">
|
<div class="flex">
|
||||||
<!--<SearchPanel client:load>-->
|
<!--<SearchPanel client:load>-->
|
||||||
<Search client:load></Search>
|
<Search client:only="svelte"></Search>
|
||||||
{!siteConfig.themeColor.fixed && (
|
{!siteConfig.themeColor.fixed && (
|
||||||
<button aria-label="Display Settings" class="btn-plain scale-animation rounded-lg h-11 w-11 active:scale-90" id="display-settings-switch">
|
<button aria-label="Display Settings" class="btn-plain scale-animation rounded-lg h-11 w-11 active:scale-90" id="display-settings-switch">
|
||||||
<Icon name="material-symbols:palette-outline" class="text-[1.25rem]"></Icon>
|
<Icon name="material-symbols:palette-outline" class="text-[1.25rem]"></Icon>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue