### Related plugins - [ ] [plugin-react](https://github.com/vitejs/vite-plugin-react/tree/main/packages/plugin-react) - [ ] [plugin-react-swc](https://github.com/vitejs/vite-plugin-react/tree/main/packages/plugin-react-swc) - [ ] [plugin-react-oxc](https://github.com/vitejs/vite-plugin-react/tree/main/packages/plugin-react-oxc) - [x] [plugin-rsc](https://github.com/vitejs/vite-plugin-react/tree/main/packages/plugin-rsc) ### Describe the bug [Raising as requested by @hi-ogawa](https://github.com/vitejs/vite-plugin-react/pull/567#issuecomment-3146964455) I've created [a reproduction of the issue](https://github.com/grahammendick/vite-plugin-react/tree/navigation-vite/packages/plugin-rsc/examples/hmr). The reproduction is where there's a module used on both the client and the server. A change to this shared module throws an error because the server rsc fetch uses the latest version of the module but the client code uses the old version of the module. There is another way to reproduce the problem without a shared module. Edit a server module and client module at the same time. So make changes to them both without saving individually and then press save all to save them both together. The problem in a nutshell is that the rsc fetch uses the latest code and the subsequent client render uses the old code. ### Reproduction https://github.com/grahammendick/vite-plugin-react/tree/navigation-vite/packages/plugin-rsc/examples/hmr ### Steps to reproduce The `App` just renders a client `Item` component passing in a key which It gets from 'lookup.ts'. The `Item` passes this key into 'lookup.ts' to get the value which it then displays. If you edit the key in 'lookup.ts' from 'a' to 'b', for example, then the hmr update throws. ```ts export const key = 'b' ``` The reason for the error is that the server response uses the latest 'lookup.ts' but the client uses the old 'lookup.ts'. So the rsc response has the key 'b' but the client still has the key 'a'. ### System Info ```shell System: OS: macOS 14.6.1 CPU: (8) arm64 Apple M1 Pro Memory: 78.34 MB / 16.00 GB Shell: 5.9 - /bin/zsh Binaries: Node: 22.12.0 - ~/.nvm/versions/node/v22.12.0/bin/node Yarn: 1.22.22 - /opt/homebrew/bin/yarn npm: 10.9.0 - ~/.nvm/versions/node/v22.12.0/bin/npm pnpm: 10.13.1 - ~/.nvm/versions/node/v22.12.0/bin/pnpm bun: 1.2.5 - ~/.nvm/versions/node/v22.12.0/bin/bun Watchman: 2024.10.07.00 - /opt/homebrew/bin/watchman Browsers: Chrome: 138.0.7204.184 Safari: 17.6 npmPackages: @vitejs/plugin-react: latest => 4.7.0 @vitejs/plugin-rsc: latest => 0.4.16 vite: ^7.0.4 => 7.0.4 ``` ### Used Package Manager npm ### Logs _No response_ ### Validations - [x] Follow our [Code of Conduct](https://github.com/vitejs/vite-plugin-react/blob/main/CODE_OF_CONDUCT.md) - [x] Read the [Contributing Guidelines](https://github.com/vitejs/vite-plugin-react/blob/main/CONTRIBUTING.md). - [x] Read the [docs](https://vite.dev/guide). - [x] Check that there isn't [already an issue](https://github.com/vitejs/vite-plugin-react/issues) that reports the same bug to avoid creating a duplicate. - [x] Make sure this is a Vite issue and not a framework-specific issue. - [x] Check that this is a concrete bug. For Q&A open a [GitHub Discussion](https://github.com/vitejs/vite-plugin-react/discussions) or join our [Discord Chat Server](https://chat.vite.dev/). - [x] The provided reproduction is a [minimal reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) of the bug.