We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f516fa7 commit b1cc638Copy full SHA for b1cc638
2 files changed
.yarnrc.yml
webpack.config.js
@@ -6,6 +6,10 @@ const { execSync } = require("child_process");
6
module.exports = (env) => {
7
const isProd = env.production === true;
8
const manifest = JSON.parse(readFileSync("manifest.json", "utf8"));
9
+ const isCI = process.env.CI === "true";
10
+
11
+ console.log("isCI: ", isCI);
12
+ console.log("BUILD_LINK: ", process.env.BUILD_LINK);
13
14
return {
15
mode: isProd ? "production" : "development",
0 commit comments