- fix lint issue
- fix Apply Cors exception handler (do not work when logged out)
This commit is contained in:
martmull
2024-05-16 15:29:27 +02:00
committed by GitHub
parent fdf10f17e2
commit afad993bb3
2 changed files with 5 additions and 3 deletions

View File

@ -82,7 +82,7 @@
"STORYBOOK_SCOPE": "pages"
}
},
"performance": {
"performance": {
"env": {
"NODE_OPTIONS": "--max_old_space_size=5000",
"STORYBOOK_SCOPE": "performance"
@ -124,7 +124,6 @@
"modules": { "env": { "STORYBOOK_SCOPE": "modules" } },
"pages": { "env": { "STORYBOOK_SCOPE": "pages" } },
"performance": { "env": { "STORYBOOK_SCOPE": "performance" } }
}
},
"storybook:test:nocoverage": {
@ -133,7 +132,6 @@
"modules": { "env": { "STORYBOOK_SCOPE": "modules" } },
"pages": { "env": { "STORYBOOK_SCOPE": "pages" } },
"performance": { "env": { "STORYBOOK_SCOPE": "performance" } }
}
},
"storybook:static:test": {

View File

@ -11,6 +11,10 @@ export class ApplyCorsToExceptions implements ExceptionFilter {
const ctx = host.switchToHttp();
const response = ctx.getResponse<Response>();
if (!response.header) {
return;
}
response.header('Access-Control-Allow-Origin', '*');
response.header(
'Access-Control-Allow-Methods',