You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently the way the code is written means that shiki + other parsing dependencies are imported alongside the event handler definition, and rollup eagerly imports them at the top level of the nuxt server, generating imports like:
currently the way the code is written means that shiki + other parsing dependencies are imported alongside the event handler definition, and rollup eagerly imports them at the top level of the nuxt server, generating imports like:
That means these files are imported even when a non-content related endpoint is hit.
If we can move code to use dynamic (cached) imports we can significantly improve the performance for non-content endpoints.
The text was updated successfully, but these errors were encountered: