1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-09-24 03:18:21 +02:00

Fixed development mode on Linux

This commit is contained in:
squidfunk 2023-09-21 18:37:17 +02:00
parent 859b8bcaee
commit 26de75679c
No known key found for this signature in database
GPG Key ID: 5ED40BC4F9C436DF

View File

@ -137,7 +137,7 @@ export function watch(
): Observable<string> {
return fromEvent(
chokidar.watch(pattern, options),
"change"
"change", file => file
) as Observable<string>
}