Zack Jackson

Results 996 comments of Zack Jackson

@2heal1 - by bundled twice, you mean that its showing up in 2 chunks? From running the build - i see that that same package is in both vendor.js and...

Ahh likely a collision. Split chunks causes issues with shared modules. Vendor regex should be patched to exclude shared modules from going into other chunks again. Or set split chunk...

Vite plugin is maintained by another group.

Note. Currently you cannot have parallel share scopes. If you use shareScope in the share object. Another runtime must exist where the top level shareScope on the plugin itself is...

try sharing [next/compat/router](https://nextjs.org/docs/pages/api-reference/functions/use-router#the-nextcompatrouter-export). next/compat/router and see if it works? it looks like they might have changed something in v15

I'll probably have to contact vercel about this

I wonder if it's due to sharing issues. From what chunk is the next router fetched? The router should load from the host only. Is the router loading from more...

what if you share it as the next/compat/router?

Okay so theres some bug / backward compat i didnt factor in when i designed layered sharing - i need to test it further but `0.0.0-next-20250612091126` seems to make next.js...

Look like server issue, server and client have different layers. Something like this may work. ``` layer: config.isServer ? 'pages-dir-node' : 'pages-dir-browser', issuerLayer: config.isServer ? 'pages-dir-node' : 'pages-dir-browser' ``` I...