File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,6 @@ contentSecurityPolicy: {
75
75
' sandbox' ?: CSPSandboxValue [] | false ;
76
76
' form-action' ?: CSPSourceValue [] | false ;
77
77
' frame-ancestors' ?: (" 'self'" | " 'none'" | string )[] | false ;
78
- ' navigate-to' ?: (" 'self'" | " 'none'" | " 'unsafe-allow-redirects'" | string )[] | false ;
79
78
' report-uri' ?: string [] | false ;
80
79
' report-to' ?: string | false ;
81
80
' upgrade-insecure-requests' ?: boolean ;
Original file line number Diff line number Diff line change @@ -82,7 +82,8 @@ export type ContentSecurityPolicyValue = {
82
82
'sandbox' ?: CSPSandboxValue [ ] | string | false ;
83
83
'form-action' ?: CSPSourceValue [ ] | string | false ;
84
84
'frame-ancestors' ?: ( "'self'" | "'none'" | string ) [ ] | string | false ;
85
- 'navigate-to' ?: ( "'self'" | "'none'" | "'unsafe-allow-redirects'" | string ) [ ] | string | false ;
85
+ // See https://github.com/w3c/webappsec-csp/pull/564
86
+ //'navigate-to'?: ("'self'" | "'none'" | "'unsafe-allow-redirects'" | string)[] | string | false;
86
87
'report-uri' ?: string [ ] | string | false ;
87
88
'report-to' ?: string | false ;
88
89
'upgrade-insecure-requests' ?: boolean ;
You can’t perform that action at this time.
0 commit comments