Adam Gerloczi
Adam Gerloczi
It looks like this currently breaks the pagefind/search functionality and also needs an astro version update. (checked on a forked version)
`transition:persist="site-search"` and a littlebit of extra code for the initialization solves the problem: ``` document.addEventListener('astro:page-load', () => { if (import.meta.env.DEV) return; const pageFind = document.querySelector('.pagefind-ui__search-input'); if (pageFind) return; const onIdle...
Actually we removed the language switching because we currently support 1 language and since our website doesn't support dark theme atm, we removed theme switching as well. So we never...