Skip to content

Commit 845e092

Browse files
committed
fix: output documentation link on errors
1 parent d10bcc3 commit 845e092

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

lib/options.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,14 @@
7171
},
7272
"ClientLogging": {
7373
"enum": ["none", "error", "warn", "info", "log", "verbose"],
74-
"decription": "Allows to set log level in the browser."
74+
"decription": "Allows to set log level in the browser.",
75+
"link": "https://webpack.js.org/configuration/dev-server/#logging"
7576
},
7677
"ClientOverlay": {
7778
"anyOf": [
7879
{
7980
"description": "Enables a full-screen overlay in the browser when there are compiler errors or warnings.",
81+
"link": "https://webpack.js.org/configuration/dev-server/#overlay",
8082
"type": "boolean"
8183
},
8284
{
@@ -97,6 +99,7 @@
9799
},
98100
"ClientProgress": {
99101
"description": "Prints compilation progress in percentage in the browser.",
102+
"link": "https://webpack.js.org/configuration/dev-server/#progress",
100103
"type": "boolean"
101104
},
102105
"ClientWebSocketTransport": {
@@ -108,7 +111,8 @@
108111
"$ref": "#/definitions/ClientWebSocketTransportString"
109112
}
110113
],
111-
"description": "Allows to set custom web socket transport to communicate with dev server."
114+
"description": "Allows to set custom web socket transport to communicate with dev server.",
115+
"link": "https://webpack.js.org/configuration/dev-server/#websockettransport"
112116
},
113117
"ClientWebSocketTransportEnum": {
114118
"enum": ["sockjs", "ws"]
@@ -119,6 +123,7 @@
119123
},
120124
"ClientWebSocketURL": {
121125
"description": "Allows to specify URL to web socket server (useful when you're proxying dev server and client script does not always know where to connect to).",
126+
"link": "https://webpack.js.org/configuration/dev-server/#websocketurl",
122127
"anyOf": [
123128
{
124129
"type": "string",

0 commit comments

Comments
 (0)