-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
fix(vite): make server .client exports undefined #8220
Conversation
|
Name | Type |
---|---|
@remix-run/dev | Patch |
create-remix | Patch |
remix | Patch |
@remix-run/architect | Patch |
@remix-run/cloudflare | Patch |
@remix-run/cloudflare-pages | Patch |
@remix-run/cloudflare-workers | Patch |
@remix-run/css-bundle | Patch |
@remix-run/deno | Patch |
@remix-run/eslint-config | Patch |
@remix-run/express | Patch |
@remix-run/node | Patch |
@remix-run/react | Patch |
@remix-run/serve | Patch |
@remix-run/server-runtime | Patch |
@remix-run/testing | Patch |
Click here to learn what changesets are, and how to add one.
Click here if you're a maintainer who wants to add a changeset to this PR
🤖 Hello there, We just published version Thanks! |
🤖 Hello there, We just published version Thanks! |
🤖 Hello there, We just published version Thanks! |
🤖 Hello there, We just published version Thanks! |
🤖 Hello there, We just published version Thanks! |
This changes the stubbed-out
.client
export values from{}
toundefined
. This matches the behaviour of the old Remix compiler, making runtime checks less error prone and providing better runtime errors if you accidentally try to use a client-only module on the server.