mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-21 05:52:41 +08:00
With the Vite-based development server, the build pipeline itself watches for files and rebuilds the relevant parts of the application as needed. The Vite file watching is unneeded and was previously setup to ignore all files. This worked but was not ideal as chokidar was still initialized inside Vite. However, Vite now supports fully disabling the file watching by passing `null` for the Vite watch option value.