put a CORS header on htmlshot's /shot endpoint.
This commit is contained in:
Родитель
3b44be6d2b
Коммит
031a6def2d
|
@ -16,6 +16,7 @@ app.get('/', function(req, res, next) {
|
|||
app.post('/shot', bodyParser.urlencoded({
|
||||
extended: false
|
||||
}), function(req, res, next) {
|
||||
res.set('Access-Control-Allow-Origin', '*');
|
||||
var html = (req.body.html || '').trim();
|
||||
if (!html) return res.sendStatus(204);
|
||||
res.type('image/png');
|
||||
|
|
Загрузка…
Ссылка в новой задаче