Skip to content

Commit e198a55

Browse files
committed
Add watcher for static files
1 parent 673fcd1 commit e198a55

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

gulpfile.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ export function startServer () {
141141
watch(`${PATH_TO_SOURCE}styles/**/*.scss`, series(processStyles));
142142
watch(`${PATH_TO_SOURCE}scripts/**/*.js`, series(processScripts));
143143
watch(`${PATH_TO_SOURCE}**/*.html`, series(processMarkup, reloadServer));
144+
watch(PATHS_TO_STATIC, series(copyAssets, reloadServer));
144145
}
145146

146147
function reloadServer (done) {

0 commit comments

Comments
 (0)