-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathoptions.html
More file actions
124 lines (99 loc) · 2.75 KB
/
options.html
File metadata and controls
124 lines (99 loc) · 2.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<p>These are the options you can use when running BrowserSync</p>
<table>
<tr>
<td>--help</td>
<td>Output usage information</td>
</tr>
<tr>
<td>--version</td>
<td>utput the version number</td>
</tr>
<tr>
<td>--files</td>
<td>File paths to watch</td>
</tr>
<tr>
<td>--exclude</td>
<td>File patterns to ignore</td>
</tr>
<tr>
<td>--server</td>
<td>Run a Local server (uses your cwd as the web root)</td>
</tr>
<tr>
<td>--index</td>
<td>Specify which file should be used as the index page</td>
</tr>
<tr>
<td>--startPath</td>
<td>Specify the start path for the opened browser</td>
</tr>
<tr>
<td>--https</td>
<td>Enable SSL for local development</td>
</tr>
<tr>
<td>--directory</td>
<td>Show a directory listing for the server</td>
</tr>
<tr>
<td>--extensions</td>
<td>Specify file extension fallbacks</td>
</tr>
<tr>
<td>--proxy</td>
<td>Proxy an existing server</td>
</tr>
<tr>
<td>--xip</td>
<td>Use xip.io domain routing</td>
</tr>
<tr>
<td>--tunnel</td>
<td>Use a public URL</td>
</tr>
<tr>
<td>--open</td>
<td>Choose which URL is auto-opened (local, external or tunnel)</td>
</tr>
<tr>
<td>--config</td>
<td>Specify a path to a bs-config.js file</td>
</tr>
<tr>
<td>--host</td>
<td>Specify a hostname to use</td>
</tr>
<tr>
<td>--logLevel</td>
<td>Set the logger output level (silent, info or debug)</td>
</tr>
<tr>
<td>--port</td>
<td>Specify a port to use</td>
</tr>
<tr>
<td>--no-notify</td>
<td>Disable the notify element in browsers</td>
</tr>
<tr>
<td>--no-open</td>
<td>Don't open a new browser window</td>
</tr>
<tr>
<td>--no-online</td>
<td>Force offline usage</td>
</tr>
<tr>
<td>--no-ui</td>
<td>Don't start the user interface</td>
</tr>
<tr>
<td>--no-ghost-mode</td>
<td>Disable Ghost Mode</td>
</tr>
<tr>
<td>--no-reload-on-restart</td>
<td>Don't auto-reload all browsers following a restart</td>
</tr>
</table>