I'm facing an issue with the images in my projects as they are not showing up. This is what I observe:
https://i.sstatic.net/jz96C.png
I am using gulp and have included a gulpfile, but strangely all the pictures in my projects, even those not related to gulp, have disappeared without any apparent reason. I'm unsure how to resolve this issue, so any help would be greatly appreciated. P.S Sorry for any mistakes in my English.
let source_folder = "#src";
let fs = require('fs');
let path = {
build: {
html: project_folder + "/",
css: project_folder + "/css/",
js: project_folder + "/js/",
img: project_folder + "/img/",
fonts: project_folder + "/fonts/",
...
...
exports.fontsStyle = fontsStyle;
exports.js = js;
exports.fonts = fonts;
exports.images = images;
exports.css = css;
exports.html = html;
exports.build = build;
exports.watch = watch;
exports.default = watch;