We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16f21c7 commit a83a4abCopy full SHA for a83a4ab
packages/waku/src/lib/plugins/patch-react-refresh.ts
@@ -11,7 +11,7 @@ export const patchReactRefresh = <T extends PluginOption[]>(options: T): T =>
11
return {
12
...option,
13
transformIndexHtml(...args) {
14
- const result = origTransformIndexHtml(...args);
+ const result = origTransformIndexHtml.call(this, ...args);
15
if (Array.isArray(result)) {
16
return result.map((item) => ({
17
...item,
0 commit comments