We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c6d5ce commit bd17ff2Copy full SHA for bd17ff2
scripts/webpack.client.config.js
@@ -7,7 +7,7 @@ const HtmlWebpackPlugin = require("html-webpack-plugin");
7
// const { BundleAnalyzerPlugin } = require("webpack-bundle-analyzer");
8
9
const root = path.join(__dirname, "..");
10
-const prod = process.env.NODE_ENV === "production";
+const prod = process.env.NODE_ENV === "production" || process.env.CI === "true";
11
12
module.exports = (options = {}) => merge(
13
require("./webpack.general.config")(options), {
0 commit comments