forked from krishnaperumal/npm-scripts-static-ref
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrowser-sync.js
24 lines (22 loc) · 809 Bytes
/
browser-sync.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
|--------------------------------------------------------------------------
| Browser-sync config file
|--------------------------------------------------------------------------
|
| Please report any issues you encounter:
| https://github.com/shakyShane/browser-sync/issues
|
| For up-to-date information about the options:
| https://github.com/shakyShane/browser-sync/wiki/Working-with-a-Config-File
|
*/
module.exports = {
/*
|--------------------------------------------------------------------------
| Files to watch
|--------------------------------------------------------------------------
| https://github.com/shakyShane/browser-sync/wiki/options#wiki-files
*/
files: ["dist/css/*.css", "dist/js/*.js","dist/**/*.html"],
serveStatic: ['dist']
};