Despite the oidc vite plugin works with Vite 8, on each build it reporting:
[PLUGIN_TIMINGS] Warning: Your build spent significant time in plugins. Here is a breakdown:
- oidc-spa (26%)
See https://rolldown.rs/options/checks#plugintimings for more details.
I think this is because rolldown has to cross the nodejs <-> rust native boundaries for every discoverd module because of the transform hook without filter.
Vite since 6.3 introduced a Hook Filters API which aimed to solve this exact issue.
Despite the oidc vite plugin works with Vite 8, on each build it reporting:
I think this is because rolldown has to cross the nodejs <-> rust native boundaries for every discoverd module because of the
transformhook without filter.Vite since 6.3 introduced a Hook Filters API which aimed to solve this exact issue.