38 lines
873 B
TypeScript
38 lines
873 B
TypeScript
![]() |
import { App } from '../components/App'
|
||
|
|
||
|
import { hydrate } from 'solid-js/web'
|
||
|
import type { PageContextBuiltInClient } from 'vite-plugin-ssr/client/router'
|
||
|
import type { PageContext } from './types'
|
||
|
import { MetaProvider } from '@solidjs/meta'
|
||
|
import i18next from 'i18next'
|
||
|
import HttpApi from 'i18next-http-backend'
|
||
|
|
||
|
let layoutReady = false
|
||
|
|
||
|
export const render = async (pageContext: PageContextBuiltInClient & PageContext) => {
|
||
|
const { lng, pageProps } = pageContext
|
||
|
|
||
|
i18next.use(HttpApi)
|
||
|
await i18next.init({
|
||
|
// debug: true,
|
||
|
supportedLngs: ['ru', 'en'],
|
||
|
fallbackLng: lng,
|
||
|
lng,
|
||
|
load: 'languageOnly'
|
||
|
})
|
||
|
|
||
|
const content = document.querySelector('#root')
|
||
|
|
||
|
if (!layoutReady) {
|
||
|
hydrate(
|
||
|
() => (
|
||
|
<MetaProvider>
|
||
|
<App {...pageProps} />
|
||
|
</MetaProvider>
|
||
|
),
|
||
|
content
|
||
|
)
|
||
|
layoutReady = true
|
||
|
}
|
||
|
}
|