{
  "name": "web_cors",
  "title": "CORS跨域中间件",
  "description": "处理跨域资源共享(CORS)配置，支持灵活的跨域策略",
  "main": "index.js",
  "type": "web",
  "state": 1,
  "sort": 30,
  "enable": true,
  "origin": "*",
  "headers": "*",
  "methods": [
    "GET",
    "POST",
    "PUT",
    "DELETE",
    "OPTIONS",
    "HEAD"
  ],
  "credentials": false,
  "max_age": 3600,
  "expose_headers": [],
  "ignore_paths": []
}