aboutsummaryrefslogtreecommitdiff
path: root/bs-config.js
diff options
context:
space:
mode:
Diffstat (limited to 'bs-config.js')
-rw-r--r--bs-config.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/bs-config.js b/bs-config.js
new file mode 100644
index 0000000..dbba89c
--- /dev/null
+++ b/bs-config.js
@@ -0,0 +1,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
+};