Browsersync formatting
This commit is contained in:
parent
4fbe296f5a
commit
e839dca089
|
@ -2,15 +2,24 @@
|
||||||
title: Browsersync
|
title: Browsersync
|
||||||
---
|
---
|
||||||
|
|
||||||
[`npm install -g browser-sync`](http://browsersync.io)
|
|
||||||
|
|
||||||
```
|
```
|
||||||
|
npm i -g browser-sync
|
||||||
|
```
|
||||||
|
{:.terminal}
|
||||||
|
|
||||||
|
### Start a server
|
||||||
|
|
||||||
|
```sh
|
||||||
browser-sync start --server <path> --files='**/*.html, **/*.css'
|
browser-sync start --server <path> --files='**/*.html, **/*.css'
|
||||||
```
|
```
|
||||||
|
|
||||||
Options
|
### Options
|
||||||
|
|
||||||
```
|
```sh
|
||||||
--port=N
|
--port=N
|
||||||
--proxy="http://127.0.0.1:3000"
|
--proxy="http://127.0.0.1:3000"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Reference
|
||||||
|
|
||||||
|
* [browsersync.io](http://browsersync.io)
|
||||||
|
|
Loading…
Reference in New Issue