Explorar el Código

Again, temporary wildcard

Brendan Abolivier hace 8 años
padre
commit
0c31333503
Firmado por: Brendan Abolivier <contact@brendanabolivier.com> ID clave GPG: 8EF1500759F70623
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1
    0
      server.js

+ 1
- 0
server.js Ver fichero

@@ -35,6 +35,7 @@ app.use(bodyParser.json());
35 35
 // that.
36 36
 app.all('/*', function(req, res, next) {
37 37
     res.header('Access-Control-Allow-Origin', '*');
38
+    res.header('Access-Control-Allow-Headers', 'Content-Type')
38 39
     next();
39 40
 });
40 41