Michael Faux

Results 3 comments of Michael Faux

Possibly related. After building my site (`npm run build`) and then serving the content (`npx serve`), the search icon fills the page until the page has loaded: ![large](https://user-images.githubusercontent.com/1324114/178939716-a8c39b55-f4bc-49db-bcb5-bc8777e2d592.gif) I've tested...

A colleague came up with the following work around. If you're using `@docusaurus/preset-classic` , add this to `/src/css/custom.css`: ``` /** * Prevent redocusaurus from displaying html before its styles are...

In the meantime, you can use `turbo` under `experimental`: ``` const nextConfig: NextConfig = { experimental: { turbo: { rules: { /* your rules here* }, }, }, }; ```