@media all and (max-width: 800px){
.dws-menu li > ul li ul {
left: 0;
}
}
gulp.task("css:build", function () {
return gulp.src(path.src.css)
.pipe(plumber()) //проверяете на ошибки
.pipe(sass()) //запускаете компилятор сасс
.pipe(autoprefixer({ //добавляете префиксы
browsers: ["last 5 versions"],
cascade: true
}))
.pipe(removeComments()) //удаляете комменты
.pipe(cssbeautify()) // приводите в человеческий вид
.pipe(gulp.dest(path.build.css)) //выплёвываете обработанный файл
.pipe(cssnano({ //затем запускаете минификатор файла, НО он будет обращатся к файлу из path.src.css а не path.build.css
zindex: false,
discardComments: {
removeAll: true // и опять удаляете комменты
}
}))
.pipe(rename("style.min.css"))
.pipe(gulp.dest('./dist/css'))
.pipe(webserver.reload({stream: true}));
});
UPD
Может кому поможет, решил проблему с file-loader, добавив context:
а в самом file-loader:
и ещё добавил плагин copy-webpack-plugin для копирования изображений, подключенных в html:
new CopyPlugin([{ from: './img', to: 'img' }]),