-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
vite: no livereload, scripts injects hmr runtime instead #8636
Conversation
🦋 Changeset detectedLatest commit: 6202840 The changes in this PR will be included in the next version bump. This PR includes changesets to release 16 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
d1d6443
to
945f177
Compare
945f177
to
b780a0a
Compare
{ | ||
name: "remix-remix-react-proxy", | ||
resolveId(id) { | ||
if (id === remixReactProxyId) { | ||
return VirtualModule.resolve(remixReactProxyId); | ||
} | ||
}, | ||
transform(code, id) { | ||
// Don't transform the proxy itself, otherwise it will import itself | ||
if (id === VirtualModule.resolve(remixReactProxyId)) { | ||
return; | ||
} | ||
|
||
let hasLiveReloadHints = | ||
code.includes("LiveReload") && code.includes("@remix-run/react"); | ||
|
||
// Don't transform files that don't need the proxy | ||
if (!hasLiveReloadHints) { | ||
return; | ||
} | ||
|
||
// Rewrite imports to use the proxy | ||
return replaceImportSpecifier({ | ||
code, | ||
specifier: "@remix-run/react", | ||
replaceWith: remixReactProxyId, | ||
}); | ||
}, | ||
load(id) { | ||
if (id === VirtualModule.resolve(remixReactProxyId)) { | ||
// TODO: ensure react refresh is initialized before `<Scripts />` | ||
return [ | ||
'import { createElement } from "react";', | ||
'export * from "@remix-run/react";', | ||
`export const LiveReload = ${ | ||
viteCommand !== "serve" | ||
} ? () => null : `, | ||
'({ nonce = undefined }) => createElement("script", {', | ||
" nonce,", | ||
" dangerouslySetInnerHTML: { ", | ||
" __html: `window.__remixLiveReloadEnabled = true`", | ||
" }", | ||
"});", | ||
].join("\n"); | ||
} | ||
}, | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
😍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cool!
🤖 Hello there, We just published version Thanks! |
🤖 Hello there, We just published version Thanks! |
Legacy compiler works
Vite w/
<LiveReload />
warnsVite w/o
<LiveReload />
works