()
| 104 | ], |
| 105 | }, |
| 106 | async headers() { |
| 107 | return [ |
| 108 | { |
| 109 | source: "/:path*", |
| 110 | headers: [ |
| 111 | { |
| 112 | key: "Referrer-Policy", |
| 113 | value: "no-referrer-when-downgrade", |
| 114 | }, |
| 115 | { |
| 116 | key: "X-DNS-Prefetch-Control", |
| 117 | value: "on", |
| 118 | }, |
| 119 | { |
| 120 | key: "X-Frame-Options", |
| 121 | value: "DENY", |
| 122 | }, |
| 123 | ], |
| 124 | }, |
| 125 | { |
| 126 | source: "/embed/:path*", |
| 127 | headers: [ |
| 128 | { |
| 129 | key: "Content-Security-Policy", |
| 130 | value: "frame-ancestors *", |
| 131 | }, |
| 132 | ], |
| 133 | }, |
| 134 | ]; |
| 135 | }, |
| 136 | async redirects() { |
| 137 | return [ |
| 138 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…