aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--webpack.config.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/webpack.config.js b/webpack.config.js
index b61043b..ac150e1 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -5,7 +5,7 @@ const webpack = require("webpack")
module.exports = {
entry: "./src/index.tsx",
- mode: process.env.NODE_ENV ? process.env.NODE_ENV : "none",
+ mode: process.env.NODE_ENV,
output: {
path: path.resolve(__dirname, "build"),
filename: "[name].[contenthash].bundle.js",
@@ -89,4 +89,4 @@ module.exports = {
inject: true,
template: 'public/index.html'
})]
-} \ No newline at end of file
+}