summaryrefslogtreecommitdiff
path: root/webpack.config.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2020-04-04 08:46:54 +0900
committersyuilo <syuilotan@yahoo.co.jp>2020-04-04 08:46:54 +0900
commitd4a630902d8d250b67fcd0ce2b49240786b40368 (patch)
treeb87395691e52e3b86ce40196993d492c694c5e79 /webpack.config.ts
parentenhance(server): Log error message when internal error occured (diff)
downloadsharkey-d4a630902d8d250b67fcd0ce2b49240786b40368.tar.gz
sharkey-d4a630902d8d250b67fcd0ce2b49240786b40368.tar.bz2
sharkey-d4a630902d8d250b67fcd0ce2b49240786b40368.zip
refactor: Use ===
Diffstat (limited to 'webpack.config.ts')
-rw-r--r--webpack.config.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/webpack.config.ts b/webpack.config.ts
index df04767ebe..ece4854e6a 100644
--- a/webpack.config.ts
+++ b/webpack.config.ts
@@ -18,7 +18,7 @@ class WebpackOnBuildPlugin {
}
}
-const isProduction = process.env.NODE_ENV == 'production';
+const isProduction = process.env.NODE_ENV === 'production';
const locales = require('./locales');
const meta = require('./package.json');