Answer the question
In order to leave comments, you need to log in
Why doesn't Gulp create an img folder in the dist folder?
https://codepen.io/ilyaaa/pen/qBadRNp?editors=1010 .
Answer the question
In order to leave comments, you need to log in
Because the images function is not called by any of the tasks.
It is possible like this:
let build = series(clean, parallel(js, css, html), images);
let build = series(clean, parallel(js, css, html, images));
let build = series(clean, html, parallel(js, css, images));
let watch = parallel(build, watchFiles, browserSync);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question