view client/vue.config.js @ 22:d53de4169d11

Removed styling artefacts Unnecessary styling of mail icon was removed.
author Thomas Junk <thomas.junk@intevation.de>
date Thu, 21 Jun 2018 12:53:16 +0200
parents d16f799e0469
children c1ef0be0ae3d
line wrap: on
line source

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