Gijs Boddeus
Gijs Boddeus
In https://github.com/vercel/next.js/issues/76395 someone said: > This is a pre-existing bug with these libraries. E.g. `React.useId()` wasn't working either. The affected library need to pass in the React module into the...
@dominik-sfl someone just posted a temporary fix in https://github.com/vercel/next.js/issues/76395 ```js const nextConfig: NextConfig = { // ... transpilePackages: ['next-seo'], }; ``` This will fix the error, though the source of...
@garmeeh I seem to get a different error with v6.7.1 and v6.7.0: ``` Error: Failed to load external module next-seo: SyntaxError: Cannot use import statement outside a module at async...
@garmeeh not sure, I also tried it with [email protected] with no errors. Might need better testing but I deleted the node_modules and .next folders every time i changed the package.json....
Looking through the docs, [this section](https://nextjs.org/docs/app/api-reference/file-conventions/metadata/opengraph-image#params-optional) has an example with a catch-all route. I ran into the same issue with catch-all routes not able to generate the image with the...