Sébastien Lorber
Sébastien Lorber
> There's quite the same idea in https://github.com/facebook/docusaurus/issues/5415. I'm personally in favor of it. But to solve this a different design would be needed as you need as the current...
> This does mean we lose default theme translations That's also why I'd prefer to have a 2nd enum string value: to keep it by default. But I'm not a...
`mobileLabelType: "languages" | "current-choice" | { text: string }` ?
```js mobileLabelType: undefined | "current-choice" | { text: string } => defaults to undefined desktopLabelType: undefined | "current-choice" | { text: string } => defaults to "current-choice" ``` Is this...
Using plugin instance name in site title is a quite specific need. In any case, I'd rather not apply this by default, and I think it's more a theming concern,...
Oh actually didn't even notice but we don't use `titleTemplate` but rather a custom `useTitleFormatter` hook 😅 > `titleFormat: '{pageTitle} | {pluginID} | {siteTitle}'` This is not a bad idea...
Relevant discussions related to customizing site title (in particular the prefix) https://github.com/facebook/docusaurus/discussions/6640 https://github.com/facebook/docusaurus/discussions/7491
@johnnyreilly you probably know better than us 😅 I didn't read the GA4 doc much. We should probably document that anyway so that users can migrate incrementally and know what...
So what I understand is that for GA4, we should simply keep using the gtag plugin but only update the trackingId to use a new one? Will the Docusaurus google-analytics...
> Is this a real scenario? Jest: ```js gtag: { trackingID: 'UA-44373548-17', }, ``` How does it start sending data to GA4 asap, but also keep sending data to the...