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

Commit bf4d1de

Browse files
author
benjtinsley
committed
correctly places task-config for http2 upgrade
1 parent 7124790 commit bf4d1de

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

extras/http2/config/task-config.js

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
var globImporter = require('node-sass-glob-importer');
2+
3+
module.exports = {
4+
html : true,
5+
images : true,
6+
fonts : true,
7+
static : true,
8+
svgSprite : true,
9+
ghPages : true,
10+
stylesheets : true,
11+
12+
javascripts: {
13+
entry: {
14+
// files paths are relative to
15+
// javascripts.dest in path-config.json
16+
app: ["./app.js"]
17+
}
18+
},
19+
20+
stylesheets: {
21+
sass: {
22+
importer: globImporter()
23+
}
24+
},
25+
26+
browserSync: {
27+
server: {
28+
// should match `dest` in
29+
// path-config.json
30+
baseDir: 'public'
31+
}
32+
},
33+
34+
production: {
35+
rev: true
36+
}
37+
}

0 commit comments

Comments
 (0)