activescott / activescott/serverless-aws-static-file-handler

No Cors headers present.

Aberta
#37 2 comentários 1 reação 0 responsáveis Ver no GitHub
enhancement good first issue help wanted pri-high
Linguagem predominante
JavaScript
Estrelas
51
Forks
14
Merge médio
1d 8h
PRs com merge (30d)
4

Descrição

### Expected behavior:

Serve static Files with cors enabled. No cors headers present.

### Actual behavior:

Cors error:

`Access to XMLHttpRequest at 'https://[URL]' from origin 'http://localhost:8080' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.`

### Steps to reproduce the problem:

Serve the static file:

event.path = file;
Return fileHandler.get(event, context);

### Bonus Workaround

Adding the headers it worked but I need to access to the response object.

```
event.path = file;
let response = await fileHandler.get(event, context)
response.headers = {
'Content-Type': response.headers["Content-Type"],
'Access-Control-Allow-Methods': '*',
'Access-Control-Allow-Origin': '*'
}
return response;
```

### Environment:

OS: Debian 10 Buster

Node Version: 10.15.3

serverless-aws-static-file-handler Version: 2.0.4

Guia de contribuição

Abrir o guia de contribuição

Avaliação

Esta issue ainda não foi avaliada.

Receba novas issues na sua caixa de entrada

Um resumo curto de issues do GitHub para quem está começando.