Allow use within iframes

This commit is contained in:
Marcus Noble 2021-03-17 08:31:47 +00:00
parent 2f425b3496
commit e514f3088b
1 changed files with 1 additions and 0 deletions

View File

@ -48,6 +48,7 @@ http.createServer((req, response) => {
delete res.headers['access-control-allow-methods'];
delete res.headers['content-encoding'];
delete res.headers['content-length'];
delete res.headers['x-frame-options'];
response.writeHead(res.statusCode, res.headers);
})
.on('data', function(data) {