fix: support image building

master
Kazhnuz 4 years ago
parent 7f2f977ea2
commit 7c00655aff
  1. BIN
      dist/img/avatar.png
  2. BIN
      dist/img/background.png
  3. BIN
      dist/img/wmap.png
  4. 9
      gulpfile.js

BIN
dist/img/avatar.png vendored

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

BIN
dist/img/wmap.png vendored

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

@ -22,7 +22,14 @@ function dep() {
}
function img() {
return src(['src/img/*'])
.pipe(dest('dist/img'));
}
exports.html = html;
exports.css = css;
exports.dep = dep;
exports.default = parallel(html, css, dep);
exports.img = img;
exports.default = parallel(html, css, dep, img);