mirror of
https://github.com/zhigang1992/interfake.git
synced 2026-01-12 22:48:04 +08:00
7 lines
247 B
JavaScript
7 lines
247 B
JavaScript
module.exports = function (req, res, next) {
|
|
res.header('Access-Control-Allow-Origin', '*');
|
|
res.header('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE');
|
|
res.header('Access-Control-Allow-Headers', 'Content-Type');
|
|
|
|
next();
|
|
}; |