I have a static project and I am hitting dummy seed JSON files, however its only allowing me to access them via GET. Here is my grunt configuration file, does anyone know how I would allow POST?
module.exports = function(grunt) {
// Configure
grunt.config.set('connect', {
server: {
options: {
hostname: '*',
middleware: function(connect) {
return [
function(request, response, next) {
response.setHeader('Access-Control-Allow-Origin', '*');
response.setHeader('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE');
response.setHeader('Access-Control-Allow-Headers', 'Content-Type');
return next();
},
connect.static(require('path').resolve('.'))
];
}
}
}
});
// Load Task
grunt.loadNpmTasks('grunt-contrib-connect');
};
This is my solution, hope can help you, I only check base[0], you can extend it.
The important is use : middlewares.unshift, not push