mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 03:21:07 +08:00
add type
This commit is contained in:
parent
ea26a0031b
commit
48789b18b3
@ -1,4 +1,6 @@
|
||||
export function getAccessControlMiddleware(crossOriginIsolated: boolean) {
|
||||
import type { RequestHandler } from 'express';
|
||||
|
||||
export function getAccessControlMiddleware(crossOriginIsolated: boolean): RequestHandler {
|
||||
return (req, res, next) => {
|
||||
res.header('Access-Control-Allow-Origin', '*');
|
||||
res.header('Access-Control-Allow-Headers', 'Origin, X-Requested-With, Content-Type, Accept');
|
||||
|
Loading…
x
Reference in New Issue
Block a user