fix(cors): add missing verbs

This commit is contained in:
Romain Lanz
2018-09-04 20:33:39 +02:00
parent 11db440607
commit 489897c488

View File

@@ -29,7 +29,7 @@ module.exports = {
| Array - An array of allowed methods
|
*/
methods: ['GET', 'PUT', 'POST'],
methods: ['GET', 'PUT', 'PATCH', 'POST', 'DELETE'],
/*
|--------------------------------------------------------------------------