Skip to content

Commit 6bdf031

Browse files
committed
add OPTIONS method to postbuild analyse
1 parent c51c334 commit 6bdf031

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

packages/kit/src/core/postbuild/analyse.js

+1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ async function analyse({ manifest_path, env }) {
8787
if (mod.PUT) methods.add('PUT');
8888
if (mod.PATCH) methods.add('PATCH');
8989
if (mod.DELETE) methods.add('DELETE');
90+
if (mod.OPTIONS) methods.add('OPTIONS');
9091
}
9192

9293
if (route.page) {

packages/kit/types/private.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ export interface CspDirectives {
138138
>;
139139
}
140140

141-
export type HttpMethod = 'GET' | 'HEAD' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
141+
export type HttpMethod = 'GET' | 'HEAD' | 'POST' | 'PUT' | 'DELETE' | 'PATCH' | 'OPTIONS';
142142

143143
export interface Logger {
144144
(msg: string): void;

0 commit comments

Comments
 (0)