Fix CORS issue with allowed headers.

This commit is contained in:
Michael Stegeman 2018-10-23 12:57:43 -06:00 коммит произвёл Andre Natal
Родитель 398378fb87
Коммит 7584c33f20
1 изменённых файлов: 11 добавлений и 1 удалений

Просмотреть файл

@ -135,7 +135,17 @@ app.use(function(req, res, next) {
res.header('Access-Control-Allow-Origin', '*');
res.header(
'Access-Control-Allow-Headers',
'Origin, X-Requested-With, Content-Type, Accept'
[
'Accept',
'Accept-Language-STT',
'Content-Type',
'Origin',
'Product-Tag',
'Store-Sample',
'Store-Transcription',
'User-Agent',
'X-Requested-With',
].join(',')
);
// Prevent browsers mistaking user provided content as HTML