view client/vue.config.js @ 353:a80e589c5ade

fix: Fix broken environment variable setting In order to use .env variables with vue-cli it is necessary to adhere to the naming convention VUE_$VARNAME. See issue90.
author Thomas Junk <thomas.junk@intevation.de>
date Tue, 07 Aug 2018 13:57:31 +0200
parents 71970f03c9e8
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
      }
    }
  }
};