view client/vue.config.js @ 427:e4b961315e9f

feat: Pagination added to usermanagement
author Thomas Junk <thomas.junk@intevation.de>
date Thu, 16 Aug 2018 17:49:24 +0200
parents a80e589c5ade
children f6d61657b487
line wrap: on
line source

var CopyWebpackPlugin = require("copy-webpack-plugin");

module.exports = {
  outputDir: "../web",
  chainWebpack: config => {
    let vendorImgPath = process.env.VUE_APP_VENDOR_IMG_PATH;
    if (!vendorImgPath) return;
    config
      .plugin("CopyWebpackPlugin")
      .use(CopyWebpackPlugin, [[{ from: vendorImgPath, to: "img" }]], {
        copyUnmodified: true
      });
  },
  devServer: {
    proxy: {
      "/api": {
        target: process.env.VUE_BACKEND_API_URL,
        secure: false
      },
      "/img/*": {
        target: "http://localhost:5000",
        secure: false
      }
    }
  }
};