logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: f93f30605321684baad373c9b26e11e93820807f
parent: e67fc997dcb1c0e9e7e84d5f2d9247042024bfcb
Author: Yamagishi Kazutoshi <ykzts@desire.sh>
Date:   Fri, 28 Jul 2017 12:14:01 +0900

Remove hash from chunk filename when dev env (#4411)


Diffstat:

Mconfig/webpack/production.js6+++++-
Mconfig/webpack/shared.js2+-
2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/config/webpack/production.js b/config/webpack/production.js @@ -10,7 +10,11 @@ const { publicPath } = require('./configuration.js'); const path = require('path'); module.exports = merge(sharedConfig, { - output: { filename: '[name]-[chunkhash].js' }, + output: { + filename: '[name]-[chunkhash].js', + chunkFilename: '[name]-[chunkhash].js', + }, + devtool: 'source-map', // separate sourcemap file, suitable for production stats: 'normal', diff --git a/config/webpack/shared.js b/config/webpack/shared.js @@ -33,7 +33,7 @@ module.exports = { output: { filename: '[name].js', - chunkFilename: '[name]-[chunkhash].js', + chunkFilename: '[name].js', path: output.path, publicPath: output.publicPath, },