-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdefaultConfig.ts
More file actions
49 lines (45 loc) · 1.1 KB
/
defaultConfig.ts
File metadata and controls
49 lines (45 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
export default {
tsContent: (name: string): string => `
import type { NextApiRequest, NextApiResponse } from 'next'
// @methods [GET,POST,PUT,DELETE]
export default async function ${name}(
req: NextApiRequest,
res: NextApiResponse
) {
switch (req.method) {
case 'GET':
case 'POST':
case 'PUT':
case 'DELETE':
default:
res.setHeader('Allow', [
'GET',
'POST',
'PUT',
'DELETE',
])
return res.status(405).end(\`Method \${req.method} Not Allowed\`)
}
}
`,
jsContent: (name: string): string => `
// @methods [GET,POST,PUT,DELETE]
export default async function ${name}(req,res) {
switch (req.method) {
case 'GET':
case 'POST':
case 'PUT':
case 'DELETE':
default:
res.setHeader('Allow', [
'GET',
'POST',
'PUT',
'DELETE',
])
return res.status(405).end(\`Method \${req.method} Not Allowed\`)
}
}
`,
typescript: false
}