--- import { setLocale } from './stores/ui' import './styles/app.scss' import { t } from './utils/intl' // Setting locale for prerendered content here const lang = Astro.url.searchParams.get('lang') || 'ru' console.log('[main.astro] astro runtime locale is', lang) setLocale(lang) ---