-
-
Notifications
You must be signed in to change notification settings - Fork 10.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP: Route chunks #11871
base: dev
Are you sure you want to change the base?
WIP: Route chunks #11871
Conversation
|
#11571
TODO:
getRouteChunks
into singulargetRouteChunk
to improve performance/cachingexport { foo, bar }
export { foo, bar as baz } from "./module"
export * from "./module"
export {}
export const foo = ..., bar = ...;
export const { foo } = ...;
etc.omitChunkedExports
now that shared imports don't de-opt