From 8eff210ea6b916a00974d9102a7ea9df7a1be82d Mon Sep 17 00:00:00 2001 From: Joel Collins Date: Mon, 8 Jun 2020 12:02:06 +0100 Subject: [PATCH] Removed unused webpack config file --- webpack.config.js | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 webpack.config.js diff --git a/webpack.config.js b/webpack.config.js deleted file mode 100644 index 99d6fd8b..00000000 --- a/webpack.config.js +++ /dev/null @@ -1,12 +0,0 @@ -// this file is for cases where we need to access the -// webpack config as a file when using CLI commands. - -let service = process.VUE_CLI_SERVICE; - -if (!service || process.env.VUE_CLI_API_MODE) { - const Service = require("@vue/cli-service/lib/Service"); - service = new Service(process.env.VUE_CLI_CONTEXT || process.cwd()); - service.init(process.env.VUE_CLI_MODE || process.env.NODE_ENV); -} - -module.exports = service.resolveWebpackConfig();