[Vuejs]-Avoid CORS filters in application.conf

-1👍

Look at this article.

In a nutshell, inside vue.config.js file add following lines:

// vue.config.js
module.exports = {
  // options...
  devServer: {
        proxy: 'https://mywebsite/',
    }
}

Leave a comment