How to add headers on Nuxt static files response?
问题 I have a json file on static folder and I'm trying to access it from another web site, but I'm having problem with the CORS. How can I add headers (like Access-Control-Allow-Origin) on the static files response? I tried this https://github.com/nuxt/nuxt.js/issues/2554#issuecomment-363795301, but didn't work for static files. module.exports = function (req, res, next) { res.setHeader('Access-Control-Allow-Origin', '*'); res.setHeader('Access-Control-Allow-Headers', '*'); res.setHeader('Access