You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"negatedDescription": "Does not serve over HTTP/2 using SPDY."
249
-
}
250
-
},
251
-
"HTTPS": {
252
-
"anyOf": [
253
-
{
254
-
"type": "boolean",
255
-
"cli": {
256
-
"negatedDescription": "Disallows to configure the server's listening socket for TLS (by default, dev server will be served over HTTP)."
257
-
}
258
-
},
259
-
{
260
-
"type": "object",
261
-
"additionalProperties": true,
262
-
"properties": {
263
-
"passphrase": {
264
-
"type": "string",
265
-
"description": "Passphrase for a pfx file. Deprecated, use the `server.options.passphrase` option."
266
-
},
267
-
"requestCert": {
268
-
"type": "boolean",
269
-
"description": "Request for an SSL certificate. Deprecated, use the `server.options.requestCert` option.",
270
-
"cli": {
271
-
"negatedDescription": "Does not request for an SSL certificate."
272
-
}
273
-
},
274
-
"ca": {
275
-
"anyOf": [
276
-
{
277
-
"type": "array",
278
-
"items": {
279
-
"anyOf": [
280
-
{
281
-
"type": "string"
282
-
},
283
-
{
284
-
"instanceof": "Buffer"
285
-
}
286
-
]
287
-
}
288
-
},
289
-
{
290
-
"type": "string"
291
-
},
292
-
{
293
-
"instanceof": "Buffer"
294
-
}
295
-
],
296
-
"description": "Path to an SSL CA certificate or content of an SSL CA certificate. Deprecated, use the `server.options.ca` option."
297
-
},
298
-
"cacert": {
299
-
"anyOf": [
300
-
{
301
-
"type": "array",
302
-
"items": {
303
-
"anyOf": [
304
-
{
305
-
"type": "string"
306
-
},
307
-
{
308
-
"instanceof": "Buffer"
309
-
}
310
-
]
311
-
}
312
-
},
313
-
{
314
-
"type": "string"
315
-
},
316
-
{
317
-
"instanceof": "Buffer"
318
-
}
319
-
],
320
-
"description": "Path to an SSL CA certificate or content of an SSL CA certificate. Deprecated, use the `server.options.ca` option."
321
-
},
322
-
"cert": {
323
-
"anyOf": [
324
-
{
325
-
"type": "array",
326
-
"items": {
327
-
"anyOf": [
328
-
{
329
-
"type": "string"
330
-
},
331
-
{
332
-
"instanceof": "Buffer"
333
-
}
334
-
]
335
-
}
336
-
},
337
-
{
338
-
"type": "string"
339
-
},
340
-
{
341
-
"instanceof": "Buffer"
342
-
}
343
-
],
344
-
"description": "Path to an SSL certificate or content of an SSL certificate. Deprecated, use the `server.options.cert` option."
345
-
},
346
-
"crl": {
347
-
"anyOf": [
348
-
{
349
-
"type": "array",
350
-
"items": {
351
-
"anyOf": [
352
-
{
353
-
"type": "string"
354
-
},
355
-
{
356
-
"instanceof": "Buffer"
357
-
}
358
-
]
359
-
}
360
-
},
361
-
{
362
-
"type": "string"
363
-
},
364
-
{
365
-
"instanceof": "Buffer"
366
-
}
367
-
],
368
-
"description": "Path to PEM formatted CRLs (Certificate Revocation Lists) or content of PEM formatted CRLs (Certificate Revocation Lists). Deprecated, use the `server.options.crl` option."
369
-
},
370
-
"key": {
371
-
"anyOf": [
372
-
{
373
-
"type": "array",
374
-
"items": {
375
-
"anyOf": [
376
-
{
377
-
"type": "string"
378
-
},
379
-
{
380
-
"instanceof": "Buffer"
381
-
},
382
-
{
383
-
"type": "object",
384
-
"additionalProperties": true
385
-
}
386
-
]
387
-
}
388
-
},
389
-
{
390
-
"type": "string"
391
-
},
392
-
{
393
-
"instanceof": "Buffer"
394
-
}
395
-
],
396
-
"description": "Path to an SSL key or content of an SSL key. Deprecated, use the `server.options.key` option."
397
-
},
398
-
"pfx": {
399
-
"anyOf": [
400
-
{
401
-
"type": "array",
402
-
"items": {
403
-
"anyOf": [
404
-
{
405
-
"type": "string"
406
-
},
407
-
{
408
-
"instanceof": "Buffer"
409
-
},
410
-
{
411
-
"type": "object",
412
-
"additionalProperties": true
413
-
}
414
-
]
415
-
}
416
-
},
417
-
{
418
-
"type": "string"
419
-
},
420
-
{
421
-
"instanceof": "Buffer"
422
-
}
423
-
],
424
-
"description": "Path to an SSL pfx file or content of an SSL pfx file. Deprecated, use the `server.options.pfx` option."
425
-
}
426
-
}
427
-
}
428
-
],
429
-
"description": "Allows to configure the server's listening socket for TLS (by default, dev server will be served over HTTP). Deprecated, use the `server` option.",
Copy file name to clipboardExpand all lines: test/cli/__snapshots__/basic.test.js.snap.webpack5
-19Lines changed: 0 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -89,25 +89,6 @@ Options:
89
89
--host <value> Allows to specify a hostname to use.
90
90
--hot [value] Enables Hot Module Replacement.
91
91
--no-hot Disables Hot Module Replacement.
92
-
--http2 Allows to serve over HTTP/2 using SPDY. Deprecated, use the \`server\` option.
93
-
--no-http2 Does not serve over HTTP/2 using SPDY.
94
-
--https Allows to configure the server's listening socket for TLS (by default, dev server will be served over HTTP). Deprecated, use the \`server\` option.
95
-
--no-https Disallows to configure the server's listening socket for TLS (by default, dev server will be served over HTTP).
96
-
--https-passphrase <value> Passphrase for a pfx file. Deprecated, use the \`server.options.passphrase\` option.
97
-
--https-request-cert Request for an SSL certificate. Deprecated, use the \`server.options.requestCert\` option.
98
-
--no-https-request-cert Does not request for an SSL certificate.
99
-
--https-ca <value...> Path to an SSL CA certificate or content of an SSL CA certificate. Deprecated, use the \`server.options.ca\` option.
100
-
--https-ca-reset Clear all items provided in 'https.ca' configuration. Path to an SSL CA certificate or content of an SSL CA certificate. Deprecated, use the \`server.options.ca\` option.
101
-
--https-cacert <value...> Path to an SSL CA certificate or content of an SSL CA certificate. Deprecated, use the \`server.options.ca\` option.
102
-
--https-cacert-reset Clear all items provided in 'https.cacert' configuration. Path to an SSL CA certificate or content of an SSL CA certificate. Deprecated, use the \`server.options.ca\` option.
103
-
--https-cert <value...> Path to an SSL certificate or content of an SSL certificate. Deprecated, use the \`server.options.cert\` option.
104
-
--https-cert-reset Clear all items provided in 'https.cert' configuration. Path to an SSL certificate or content of an SSL certificate. Deprecated, use the \`server.options.cert\` option.
105
-
--https-crl <value...> Path to PEM formatted CRLs (Certificate Revocation Lists) or content of PEM formatted CRLs (Certificate Revocation Lists). Deprecated, use the \`server.options.crl\` option.
106
-
--https-crl-reset Clear all items provided in 'https.crl' configuration. Path to PEM formatted CRLs (Certificate Revocation Lists) or content of PEM formatted CRLs (Certificate Revocation Lists). Deprecated, use the \`server.options.crl\` option.
107
-
--https-key <value...> Path to an SSL key or content of an SSL key. Deprecated, use the \`server.options.key\` option.
108
-
--https-key-reset Clear all items provided in 'https.key' configuration. Path to an SSL key or content of an SSL key. Deprecated, use the \`server.options.key\` option.
109
-
--https-pfx <value...> Path to an SSL pfx file or content of an SSL pfx file. Deprecated, use the \`server.options.pfx\` option.
110
-
--https-pfx-reset Clear all items provided in 'https.pfx' configuration. Path to an SSL pfx file or content of an SSL pfx file. Deprecated, use the \`server.options.pfx\` option.
111
92
--ipc [value] Listen to a unix socket.
112
93
--live-reload Enables reload/refresh the page(s) when file changes are detected (enabled by default).
113
94
--no-live-reload Disables reload/refresh the page(s) when file changes are detected (enabled by default).
0 commit comments