Skip to content

Commit 9cb6793

Browse files
committed
Merge remote-tracking branch 'upstream/main' into 1745
2 parents 7b1c38e + 1180d4b commit 9cb6793

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

guide/api-environment-runtimes.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -203,15 +203,10 @@ interface ModuleRunnerOptions {
203203
| InterceptorOptions
204204
/**
205205
* HMR を無効にするか、HMR オプションを設定します。
206+
*
207+
* @default true
206208
*/
207-
hmr?:
208-
| false
209-
| {
210-
/**
211-
* HMR ロガーを設定します。
212-
*/
213-
logger?: false | HMRLogger
214-
}
209+
hmr?: boolean | ModuleRunnerHmr
215210
/**
216211
* カスタムモジュールキャッシュ。指定されていない場合は、モジュールランナーの
217212
* インスタンスごとに個別のモジュールキャッシュが作成されます。
@@ -379,6 +374,7 @@ export const runner = new ModuleRunner(
379374
return response.json()
380375
},
381376
},
377+
hmr: false, // HMR は transport.connect を必要とするため HMR を無効にする
382378
},
383379
new ESModulesEvaluator(),
384380
)

0 commit comments

Comments
 (0)