[Vuejs]-How to change 'Access-Control-Allow-Origin' header?

0👍

Chrome has some extra web security measures, if you open chrome with the option
--disable-web-security it should work fine.

To solve this for Chrome with security enabled you will need to modify your server-side response headers and add Access-Control-Allow-Origin: * or replace the * with the url you will be accessing it from.

Leave a comment