You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to combine autoprefixer and harp, so that the served css files are already auto-prefixed?
My gulp files looks like the following:
/* * Serve the Harp Site from the src directory */gulp.task('serve',function(){harp.server(__dirname,{port: 9000},function(err){if(err!==null&&err!==undefined)console.error(err);browserSync({proxy: 'localhost:9000',open: true,/* Hide the notification. It gets annoying */notify: {styles: ['opacity: 0','position: absolute']}});/* Watch for scss changes, tell BrowserSync to refresh main.css */gulp.watch([files.styles.css,files.styles.scss],function(){reload(files.styles.main,{stream: true});});/* Watch for all other changes, reload the whole page */gulp.watch([files.harp,files.data,files.sites,files.images,files.scripts.js,files.scripts.coffee,files.partials],reload);})});
Notice: Autoprefixing the files after compiling with harp in gulp isn't a problem. This question is about how to serve autoprefixed files with harp.server.
Thanks!
The text was updated successfully, but these errors were encountered:
Is it possible to combine autoprefixer and harp, so that the served css files are already auto-prefixed?
My gulp files looks like the following:
Notice: Autoprefixing the files after compiling with harp in gulp isn't a problem. This question is about how to serve autoprefixed files with
harp.server
.Thanks!
The text was updated successfully, but these errors were encountered: