Created
October 21, 2016 19:38
-
-
Save keighty/9e5eb136c27b6a4f98f7c4f49d749256 to your computer and use it in GitHub Desktop.
browser-sync project setup for easy local web server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module.exports = { | |
| "files": ["*html","*js","*css"], | |
| "server": true, | |
| "port": 3000, | |
| "https": true, | |
| "routes": { | |
| "/foo": "foo" | |
| } | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>FOO</title> | |
| </head> | |
| <body> | |
| <p> | |
| This is a foo | |
| </p> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>INDEX</title> | |
| </head> | |
| <body> | |
| <p> | |
| This is the index | |
| </p> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment