-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
feat(nextjs): Record turbopack
as tag
#15928
Conversation
size-limit report 📦
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we add tests for this?
Tricky because it relies very strongly on Next.js versions and stuff. |
try { | ||
// @ts-expect-error `process.turbopack` is a magic string that will be replaced by Next.js | ||
if (process.turbopack) { | ||
getGlobalScope().setTag('turbopack', true); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmm are we sure we want to set a tag over a context here? Is there value in making this searchable?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I say yes - for now. Sigrid is working on some stuff in the protocol that will allow us to send stuff like this in a more structured way. It will be invaluable for us in the transitionary period when turbopack ships and we have to debug potential issues with the SDK.
This tag can be useful for troubleshooting inside the product.
Note that the
process.turbopack
flag is only available in code bundled by Next.js.