Skip to content
This repository has been archived by the owner on Sep 15, 2023. It is now read-only.

Commit

Permalink
correctly places task-config for http2 upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
benjtinsley committed Oct 11, 2017
1 parent 7124790 commit bf4d1de
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions extras/http2/config/task-config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
var globImporter = require('node-sass-glob-importer');

module.exports = {
html : true,
images : true,
fonts : true,
static : true,
svgSprite : true,
ghPages : true,
stylesheets : true,

javascripts: {
entry: {
// files paths are relative to
// javascripts.dest in path-config.json
app: ["./app.js"]
}
},

stylesheets: {
sass: {
importer: globImporter()
}
},

browserSync: {
server: {
// should match `dest` in
// path-config.json
baseDir: 'public'
}
},

production: {
rev: true
}
}

0 comments on commit bf4d1de

Please sign in to comment.