From f8c4ffb3430bc3d55afc8c607a046821770db754 Mon Sep 17 00:00:00 2001 From: mgi166 Date: Mon, 24 Jul 2017 23:13:18 +0900 Subject: [PATCH] Remove dotenv --- webpack.config.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index d82fbfd..5151c41 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -1,5 +1,4 @@ const nodeExternals = require('webpack-node-externals'); -const Dotenv = require('dotenv-webpack'); const path = require('path'); module.exports = { @@ -23,7 +22,4 @@ module.exports = { ], }, externals: [nodeExternals()], - plugins: [ - new Dotenv(), - ], };