2017-05-03 02:04:16 +02:00
|
|
|
// Note: You must restart bin/webpack-dev-server for changes to take effect
|
|
|
|
|
2017-05-20 17:31:47 +02:00
|
|
|
const webpack = require('webpack');
|
|
|
|
const merge = require('webpack-merge');
|
|
|
|
const CompressionPlugin = require('compression-webpack-plugin');
|
|
|
|
const sharedConfig = require('./shared.js');
|
2017-05-22 15:42:11 +02:00
|
|
|
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
|
2017-07-13 22:15:32 +02:00
|
|
|
const OfflinePlugin = require('offline-plugin');
|
|
|
|
const { publicPath } = require('./configuration.js');
|
|
|
|
const path = require('path');
|
2017-05-03 02:04:16 +02:00
|
|
|
|
2017-11-01 14:42:19 +01:00
|
|
|
let compressionAlgorithm;
|
|
|
|
try {
|
|
|
|
const zopfli = require('node-zopfli');
|
|
|
|
compressionAlgorithm = (content, options, fn) => {
|
|
|
|
zopfli.gzip(content, options, fn);
|
|
|
|
};
|
|
|
|
} catch (error) {
|
|
|
|
compressionAlgorithm = 'gzip';
|
|
|
|
}
|
|
|
|
|
2017-05-03 02:04:16 +02:00
|
|
|
module.exports = merge(sharedConfig, {
|
2017-07-28 05:14:01 +02:00
|
|
|
output: {
|
|
|
|
filename: '[name]-[chunkhash].js',
|
|
|
|
chunkFilename: '[name]-[chunkhash].js',
|
|
|
|
},
|
|
|
|
|
2017-06-18 02:57:09 +02:00
|
|
|
devtool: 'source-map', // separate sourcemap file, suitable for production
|
|
|
|
stats: 'normal',
|
2017-05-03 02:04:16 +02:00
|
|
|
|
|
|
|
plugins: [
|
|
|
|
new webpack.optimize.UglifyJsPlugin({
|
2017-06-18 02:57:09 +02:00
|
|
|
sourceMap: true,
|
2017-05-06 21:24:59 +02:00
|
|
|
mangle: true,
|
2017-05-03 02:04:16 +02:00
|
|
|
|
2017-06-18 02:57:09 +02:00
|
|
|
compress: {
|
|
|
|
warnings: false,
|
|
|
|
},
|
|
|
|
|
2017-05-03 02:04:16 +02:00
|
|
|
output: {
|
2017-05-20 17:31:47 +02:00
|
|
|
comments: false,
|
2017-05-03 02:04:16 +02:00
|
|
|
},
|
|
|
|
}),
|
|
|
|
new CompressionPlugin({
|
|
|
|
asset: '[path].gz[query]',
|
2017-11-01 14:42:19 +01:00
|
|
|
algorithm: compressionAlgorithm,
|
2017-06-18 02:57:09 +02:00
|
|
|
test: /\.(js|css|html|json|ico|svg|eot|otf|ttf)$/,
|
2017-05-20 17:31:47 +02:00
|
|
|
}),
|
2017-05-22 15:42:11 +02:00
|
|
|
new BundleAnalyzerPlugin({ // generates report.html and stats.json
|
|
|
|
analyzerMode: 'static',
|
|
|
|
generateStatsFile: true,
|
2017-06-02 03:49:56 +02:00
|
|
|
statsOptions: {
|
|
|
|
// allows usage with http://chrisbateman.github.io/webpack-visualizer/
|
|
|
|
chunkModules: true,
|
|
|
|
},
|
2017-05-22 15:42:11 +02:00
|
|
|
openAnalyzer: false,
|
2017-05-28 16:26:16 +02:00
|
|
|
logLevel: 'silent', // do not bother Webpacker, who runs with --json and parses stdout
|
2017-05-22 15:42:11 +02:00
|
|
|
}),
|
2017-07-13 22:15:32 +02:00
|
|
|
new OfflinePlugin({
|
|
|
|
publicPath: publicPath, // sw.js must be served from the root to avoid scope issues
|
2017-10-31 12:25:51 +01:00
|
|
|
caches: {
|
|
|
|
main: [':rest:'],
|
|
|
|
additional: [':externals:'],
|
|
|
|
optional: [
|
|
|
|
'**/locale_*.js', // don't fetch every locale; the user only needs one
|
|
|
|
'**/*_polyfills-*.js', // the user may not need polyfills
|
|
|
|
'**/*.woff2', // the user may have system-fonts enabled
|
|
|
|
// images/audio can be cached on-demand
|
|
|
|
'**/*.png',
|
|
|
|
'**/*.jpg',
|
|
|
|
'**/*.jpeg',
|
|
|
|
'**/*.svg',
|
|
|
|
'**/*.mp3',
|
|
|
|
'**/*.ogg',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
externals: [
|
|
|
|
'/emoji/1f602.svg', // used for emoji picker dropdown
|
|
|
|
'/emoji/sheet.png', // used in emoji-mart
|
|
|
|
],
|
|
|
|
excludes: [
|
|
|
|
'**/*.gz',
|
|
|
|
'**/*.map',
|
|
|
|
'stats.json',
|
|
|
|
'report.html',
|
|
|
|
// any browser that supports ServiceWorker will support woff2
|
|
|
|
'**/*.eot',
|
|
|
|
'**/*.ttf',
|
|
|
|
'**/*-webfont-*.svg',
|
|
|
|
'**/*.woff',
|
|
|
|
],
|
2017-07-13 22:15:32 +02:00
|
|
|
ServiceWorker: {
|
|
|
|
entry: path.join(__dirname, '../../app/javascript/mastodon/service_worker/entry.js'),
|
|
|
|
cacheName: 'mastodon',
|
2017-07-28 01:55:52 +02:00
|
|
|
output: '../assets/sw.js',
|
2017-07-13 22:15:32 +02:00
|
|
|
publicPath: '/sw.js',
|
|
|
|
minify: true,
|
|
|
|
},
|
|
|
|
}),
|
2017-05-20 17:31:47 +02:00
|
|
|
],
|
|
|
|
});
|