diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2021-04-09 21:37:08 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2021-04-09 21:37:08 +0200 |
| commit | 4410ea13a9a0e1fddb28a104e6015f332014a377 (patch) | |
| tree | 6ef52944e791052560c49ded6cdb2a6c3f3d0d58 | |
| parent | 3a35d6f81f4c17310baa29b0d077e8a70bf2f5dd (diff) | |
log
| -rw-r--r-- | webpack.config.site.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/webpack.config.site.js b/webpack.config.site.js index 16d35a3..14d22b4 100644 --- a/webpack.config.site.js +++ b/webpack.config.site.js @@ -6,8 +6,9 @@ const TerserPlugin = require("terser-webpack-plugin"); module.exports = function (env) { console.log("Building live site (production)"); - console.log(env); + if (env) console.log(env); const appTarget = (env && env.APP_TARGET) || "app"; + console.log("Using app target:", appTarget); return { mode: "production", entry: { |
