view client/vue.config.js @ 933:7899867c7bf5 geo-style

Merged default into geo-style branch.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 08 Oct 2018 14:53:17 +0200
parents d025e1f5e71d
children 3907a7b98067
line wrap: on
line source

const CopyWebpackPlugin = require("copy-webpack-plugin");
// const PurgecssPlugin = require("purgecss-webpack-plugin");
const glob = require("glob-all");
const path = require("path");

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
      });
    // config.plugin("PurgecssPlugin").use(PurgecssPlugin, [
    //   {
    //     paths: glob.sync([
    //       path.join(__dirname, "./src/index.html"),
    //       path.join(__dirname, "./**/*.vue"),
    //       path.join(__dirname, "./src/**/*.js")
    //     ])
    //   }
    // ]);
  },
  css: {
    loaderOptions: {
      // pass options to sass-loader
      sass: {
        // @/ is an alias to src/
        // so this assumes you have a file named `src/variables.scss`
        data: `@import "@/application/assets/application.scss";`
      }
    }
  },
  devServer: {
    proxy: {
      "/api": {
        target: process.env.VUE_BACKEND_API_URL,
        secure: false
      },
      "/img/*": {
        target: "http://localhost:5000",
        secure: false
      }
    },
    disableHostCheck: true
  }
};