We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87ea998 commit cd76a80Copy full SHA for cd76a80
.changeset/tired-rockets-jog.md
@@ -0,0 +1,5 @@
1
+---
2
+"@gasket/plugin-https": patch
3
4
+
5
+Allow partial https in gasket config.
packages/gasket-plugin-https/lib/index.d.ts
@@ -27,8 +27,8 @@ declare module '@gasket/core' {
27
28
type CustomHttpsSettings = {
29
root?: string;
30
- key: MaybeMultiple<CertInput>;
31
- cert: MaybeMultiple<CertInput>;
+ key?: MaybeMultiple<CertInput>;
+ cert?: MaybeMultiple<CertInput>;
32
ca?: MaybeMultiple<CertInput>;
33
ciphers?: MaybeMultiple<string>;
34
honorCipherOrder?: boolean;
0 commit comments