# HG changeset patch # User Thomas Junk # Date 1543837341 -3600 # Node ID 18ddb6935aa64f70ede6c5d0e85fe510c5ae9bea # Parent bd2708b38f0ebeaa851528db6a260135f4a5bb76 purgecss ate toast diff -r bd2708b38f0e -r 18ddb6935aa6 client/vue.config.js --- a/client/vue.config.js Mon Dec 03 12:35:36 2018 +0100 +++ b/client/vue.config.js Mon Dec 03 12:42:21 2018 +0100 @@ -1,7 +1,4 @@ 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", @@ -13,15 +10,6 @@ .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: {