view vue.config.js @ 12:000adddf74c8

Merge vue-cli branch into default * Remove second branch, because we don't need it.
author Bernhard Reiter <bernhard@intevation.de>
date Wed, 20 Jun 2018 16:48:54 +0200
parents e0b5dd98665e
children
line wrap: on
line source

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