cors
cors copied to clipboard
How to set CORS of static resources
this my config
app.use(convert(require('koa-static')(__dirname + '/public')))
app.use(cors({
origin: function (ctx) {
return '*';
},
exposeHeaders: ['WWW-Authenticate', 'Server-Authorization'],
maxAge: 5,
credentials: true,
allowMethods: ['GET', 'POST', 'DELETE'],
allowHeaders: ['Content-Type', 'Authorization', 'Accept'],
}))
Error reporting when I access files under public has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
Should probably move cors above the koa-static middleware
It's work fine. you don't need to use convert !!