Robb
Robb
## Root Cause: Suspense Wrapper I found and verified a change for this issue ### The Bug In [`metadata.tsx` lines 160-169](https://github.com/vercel/next.js/blob/canary/packages/next/src/lib/metadata/metadata.tsx#L160-L169), when `serveStreamingMetadata` is `true`, metadata is wrapped in ``:...
UPDATE: I have added a 4th and 5th case which use the `generateMetadata` function and the `metadata` property respectively in the page to add the metadata. Current behavior: the tags...
## Root Cause Found: RSC Flight Data vs SSR HTML I've done much more testing and found the root cause of this issue. ### The Problem When `serveStreamingMetadata` is true...
I made [more changes](https://github.com/vercel/next.js/pull/84976/commits/cb105c3500379403b7521a7745c2cf898d12abcd) to metadata.tsx and updated the tests which all pass now.
The easier of the two solutions of this is fixed in the current code. I created this https://github.com/storybookjs/storybook/pull/33253 which implements the second solution allowing web components with a closed shadow...
I submitted a pull request to fix this in the vite-plugin-storybook-nextjs project: https://github.com/storybookjs/vite-plugin-storybook-nextjs/pull/80.
In addition to the CR changes I also moved the test file to be collocated with it's test file to be consistent with other test files.
@Sidnioulz I'm sorry but I'm a bit confused should I be doing something like this: ```typescript if (hasNodeShebang(file)) { spawn(process.execPath, [file]) } else { open(file) } ``` ? thanks