view client/vue.config.js @ 17:7d242100af46

Adjusted the look and feel of the login page according to ISC We have now a light gray background. The login is in a white rounded box with black border.
author Thomas Junk <thomas.junk@intevation.de>
date Thu, 21 Jun 2018 11:19:02 +0200
parents 88d0d60924cf
children d16f799e0469
line wrap: on
line source

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