Skip to content

Commit

Permalink
fix(plugin-react): only detect preamble in hmr context (#6096)
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Dec 13, 2021
1 parent 0373441 commit 8735294
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions packages/plugin-react/src/fast-refresh.ts
Expand Up @@ -35,14 +35,14 @@ import RefreshRuntime from "${runtimePublicPath}";
let prevRefreshReg;
let prevRefreshSig;
if (!window.__vite_plugin_react_preamble_installed__) {
throw new Error(
"@vitejs/plugin-react can't detect preamble. Something is wrong. " +
"See https://github.com/vitejs/vite-plugin-react/pull/11#discussion_r430879201"
);
}
if (import.meta.hot) {
if (!window.__vite_plugin_react_preamble_installed__) {
throw new Error(
"@vitejs/plugin-react can't detect preamble. Something is wrong. " +
"See https://github.com/vitejs/vite-plugin-react/pull/11#discussion_r430879201"
);
}
prevRefreshReg = window.$RefreshReg$;
prevRefreshSig = window.$RefreshSig$;
window.$RefreshReg$ = (type, id) => {
Expand Down

0 comments on commit 8735294

Please sign in to comment.