We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fef334 commit 33ca65aCopy full SHA for 33ca65a
packages/angular_devkit/build_angular/src/webpack/utils/helpers.ts
@@ -121,7 +121,7 @@ export function isPolyfillsEntry(name: string): boolean {
121
export function getWatchOptions(poll: number | undefined): Configuration['watchOptions'] {
122
return {
123
poll,
124
- ignored: poll === undefined ? undefined : 'node_modules/**',
+ ignored: poll === undefined ? '**/$_lazy_route_resources' : 'node_modules/**',
125
};
126
}
127
0 commit comments