Michael Faux
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:  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* }, }, }, }; ```