aboutsummaryrefslogtreecommitdiff
path: root/bs-config.js
blob: dbba89cef6320ff1179e32dbd1692ce0ca4a50c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 | Browser-sync config file
 |
 | For up-to-date information about the options:
 |   http://www.browsersync.io/docs/options/
 |
 */

module.exports = {
  snippetOptions: {
    rule: {
      match: /<\/head>/i,
      fn: function (snippet, match) {
        return snippet + match;
      }
    }
  },
  files: ["public/css/**/*.css", "public/js/**/*.js"],
  watchEvents: ["change"],
  open: false,
  browser: "default",
  ghostMode: false,
  ui: false,
  online: false,
  logConnections: false
};