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 30b50c4 commit 385c21aCopy full SHA for 385c21a
src/dev_server.ts
@@ -609,7 +609,9 @@ export class DevServer {
609
this.options.env = {
610
...this.options.env,
611
HOT_HOOK_INCLUDE: this.#fileSystem.includes.join(','),
612
- HOT_HOOK_IGNORE: this.#fileSystem.excludes.join(','),
+ HOT_HOOK_IGNORE: this.#fileSystem.excludes
613
+ .filter((exclude) => !exclude.includes('inertia'))
614
+ .join(','),
615
HOT_HOOK_RESTART: (this.options.metaFiles ?? [])
616
.filter(({ reloadServer }) => !!reloadServer)
617
.map(({ pattern }) => pattern)
0 commit comments