view vue.config.js @ 11:e0b5dd98665e vue-cli

current frontend with asset server configured
author Thomas Junk <thomas.junk@intevation.de>
date Wed, 20 Jun 2018 14:43:48 +0200
parents 1597506a2241
children
line wrap: on
line source

module.exports = {
  devServer: {
    proxy: {
      "/api/*": {
        target: "http://localhost:8000",
        secure: false
      },
      "/assets/*": {
        target: "http://localhost:5000",
        secure: false
      }
    }
  }
};