woody

Results 5 comments of woody

Привет, столкнулся с такой же проблемой и нашел решение. ``` numericOnly: true, delimiters: ['+', '7 ', '(', ') ', ' - ', ' - '], blocks: [0, 0, 0, 3,...

> I took @VickyKoblinski's example code ([#6192 (comment)](https://github.com/chakra-ui/chakra-ui/issues/6192#issuecomment-1159979257)) and boiled it down to the minimum to get a theme correctly pre-rendered with NextJS: > > ```tsx > // pages/_document.tsx >...

How did I manage to solve this problem: 1. Setting the theme color in your config ``` const customTheme = { ... config: { initialColorMode: 'dark', }, ... } ```...

My decision ``` /** * Middleware для загрузки файлов * @param {{ * allowedExtensions: string[]; * compress?: boolean; * directory?: string; * }} options - Data Object * @param directory...

I also faced this problem. I tried intentionally using getServerSideProps to change the value of props.locale, but this does not give any result :(