Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
.idea
.DS_Store
31 changes: 31 additions & 0 deletions bs-config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@

/*
|--------------------------------------------------------------------------
| Browser-sync config file
|--------------------------------------------------------------------------
|
| For up-to-date information about the options:
| http://www.browsersync.io/docs/options/
|
| There are more options than you see here, these are just the ones that are
| set internally. See the website for more info.
|
|
*/
module.exports = {
"ui": {
"port": 8080
},
"files": [
"./js/*.js",
"./css/*.css"
],
"startPath": "/test/index.html",
"server": true,
// "proxy": {
// target: "modalvideo.dev",
// ws: true
// },
"port": 80,
"open": "external"
};
Loading