aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/webpack/webpack.video-embed.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/webpack/webpack.video-embed.js')
-rw-r--r--client/webpack/webpack.video-embed.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/client/webpack/webpack.video-embed.js b/client/webpack/webpack.video-embed.js
index ef17deeb6..7de63adfc 100644
--- a/client/webpack/webpack.video-embed.js
+++ b/client/webpack/webpack.video-embed.js
@@ -40,7 +40,11 @@ module.exports = function () {
40 : '[name].[hash].bundle.js', 40 : '[name].[hash].bundle.js',
41 41
42 sourceMapFilename: '[file].map', 42 sourceMapFilename: '[file].map',
43 chunkFilename: '[id].[hash].chunk.js', 43
44 chunkFilename: process.env.ANALYZE_BUNDLE === 'true'
45 ? '[name].chunk.js'
46 : '[id].[hash].chunk.js',
47
44 publicPath: '/client/standalone/videos/' 48 publicPath: '/client/standalone/videos/'
45 }, 49 },
46 50