Sébastien Lorber
Sébastien Lorber
The code generation happens before webpack kicks in. We generate code that is imported statically by webpack. Afaik we don't have any code generation in loaders. About the babel part,...
That would be really great if we could do that :) - Being able to assign modules to different caches - Having a way to customize the cache entry expiration
Just seen the maxGenerations options, that might help improve the perfs for my usecase, will test that
I still think it would be a useful perf improvement, but nothing hurry on my side, just want to keep this issue open
I'm not the manager of this repo and don't speak russian, I can't do anything for you sorry 😅
Actually it's possible to change the singleton of xdate before re rendering and solved my usecase for translated app but it's not ideal. I'll try to add some doc about...
I think we should rather migrate away from XDate and use another date lib which does not need singleton.
I've successfully switched from english to french with the following: ```js LocaleConfig.locales.en = LocaleConfig.locales['']; LocaleConfig.locales.fr = { monthNames: [ 'Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin', 'Juillet', 'Août', 'Septembre', 'Octobre', 'Novembre',...
I understand. Isn't there a way to know the heading its ahead of time by using AppStore or the spec file? You don't have to call `collectAnchor(anchor)` in a heading...
As far as I know this CSS var is not even used on Docusaurus, But is only found in Infima search: https://infima.dev/demo/ I'll keep this issue open because we should...