2017-05-02 17:04:16 -07:00
|
|
|
// Note: You must restart bin/webpack-dev-server for changes to take effect
|
|
|
|
|
2017-05-20 08:31:47 -07:00
|
|
|
const merge = require('webpack-merge');
|
2018-07-13 18:56:41 -07:00
|
|
|
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
|
2017-05-20 08:31:47 -07:00
|
|
|
const CompressionPlugin = require('compression-webpack-plugin');
|
|
|
|
const sharedConfig = require('./shared.js');
|
2017-05-22 06:42:11 -07:00
|
|
|
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
|
2017-07-13 13:15:32 -07:00
|
|
|
const OfflinePlugin = require('offline-plugin');
|
2018-05-28 15:43:47 -07:00
|
|
|
const { publicPath } = require('./configuration.js');
|
2017-07-13 13:15:32 -07:00
|
|
|
const path = require('path');
|
2018-07-17 06:29:33 -07:00
|
|
|
const { URL } = require('url');
|
2017-05-02 17:04:16 -07:00
|
|
|
|
2017-11-01 06:42:19 -07:00
|
|
|
let compressionAlgorithm;
|
|
|
|
try {
|
|
|
|
const zopfli = require('node-zopfli');
|
|
|
|
compressionAlgorithm = (content, options, fn) => {
|
|
|
|
zopfli.gzip(content, options, fn);
|
|
|
|
};
|
|
|
|
} catch (error) {
|
|
|
|
compressionAlgorithm = 'gzip';
|
|
|
|
}
|
|
|
|
|
2018-05-28 15:43:47 -07:00
|
|
|
let attachmentHost;
|
|
|
|
|
|
|
|
if (process.env.S3_ENABLED === 'true') {
|
2018-08-25 04:27:08 -07:00
|
|
|
if (process.env.S3_ALIAS_HOST || process.env.S3_CLOUDFRONT_HOST) {
|
|
|
|
attachmentHost = process.env.S3_ALIAS_HOST || process.env.S3_CLOUDFRONT_HOST;
|
2018-05-28 15:43:47 -07:00
|
|
|
} else {
|
|
|
|
attachmentHost = process.env.S3_HOSTNAME || `s3-${process.env.S3_REGION || 'us-east-1'}.amazonaws.com`;
|
|
|
|
}
|
|
|
|
} else if (process.env.SWIFT_ENABLED === 'true') {
|
|
|
|
const { host } = new URL(process.env.SWIFT_OBJECT_URL);
|
|
|
|
attachmentHost = host;
|
|
|
|
} else {
|
|
|
|
attachmentHost = null;
|
|
|
|
}
|
|
|
|
|
2017-05-02 17:04:16 -07:00
|
|
|
module.exports = merge(sharedConfig, {
|
2018-07-13 18:56:41 -07:00
|
|
|
mode: 'production',
|
|
|
|
|
2017-07-27 20:14:01 -07:00
|
|
|
output: {
|
|
|
|
filename: '[name]-[chunkhash].js',
|
|
|
|
chunkFilename: '[name]-[chunkhash].js',
|
|
|
|
},
|
|
|
|
|
2017-06-17 17:57:09 -07:00
|
|
|
devtool: 'source-map', // separate sourcemap file, suitable for production
|
|
|
|
stats: 'normal',
|
2017-05-02 17:04:16 -07:00
|
|
|
|
2018-07-13 18:56:41 -07:00
|
|
|
optimization: {
|
|
|
|
minimize: true,
|
|
|
|
minimizer: [
|
|
|
|
new UglifyJsPlugin({
|
2018-10-05 23:12:05 -07:00
|
|
|
cache: true,
|
|
|
|
parallel: true,
|
2018-07-13 18:56:41 -07:00
|
|
|
sourceMap: true,
|
2017-05-02 17:04:16 -07:00
|
|
|
|
2018-07-13 18:56:41 -07:00
|
|
|
uglifyOptions: {
|
|
|
|
compress: {
|
|
|
|
warnings: false,
|
|
|
|
},
|
|
|
|
|
|
|
|
output: {
|
|
|
|
comments: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
|
|
|
plugins: [
|
2017-05-02 17:04:16 -07:00
|
|
|
new CompressionPlugin({
|
2017-11-01 06:42:19 -07:00
|
|
|
algorithm: compressionAlgorithm,
|
2017-06-17 17:57:09 -07:00
|
|
|
test: /\.(js|css|html|json|ico|svg|eot|otf|ttf)$/,
|
2017-05-20 08:31:47 -07:00
|
|
|
}),
|
2017-05-22 06:42:11 -07:00
|
|
|
new BundleAnalyzerPlugin({ // generates report.html and stats.json
|
|
|
|
analyzerMode: 'static',
|
|
|
|
generateStatsFile: true,
|
2017-06-01 18:49:56 -07:00
|
|
|
statsOptions: {
|
|
|
|
// allows usage with http://chrisbateman.github.io/webpack-visualizer/
|
|
|
|
chunkModules: true,
|
|
|
|
},
|
2017-05-22 06:42:11 -07:00
|
|
|
openAnalyzer: false,
|
2017-05-28 07:26:16 -07:00
|
|
|
logLevel: 'silent', // do not bother Webpacker, who runs with --json and parses stdout
|
2017-05-22 06:42:11 -07:00
|
|
|
}),
|
2017-07-13 13:15:32 -07:00
|
|
|
new OfflinePlugin({
|
|
|
|
publicPath: publicPath, // sw.js must be served from the root to avoid scope issues
|
2017-10-31 04:25:51 -07: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
|
2018-06-10 07:12:47 -07:00
|
|
|
'/emoji/sheet_10.png', // used in emoji-mart
|
2017-10-31 04:25:51 -07:00
|
|
|
],
|
|
|
|
excludes: [
|
|
|
|
'**/*.gz',
|
|
|
|
'**/*.map',
|
|
|
|
'stats.json',
|
|
|
|
'report.html',
|
|
|
|
// any browser that supports ServiceWorker will support woff2
|
|
|
|
'**/*.eot',
|
|
|
|
'**/*.ttf',
|
|
|
|
'**/*-webfont-*.svg',
|
|
|
|
'**/*.woff',
|
|
|
|
],
|
2017-07-13 13:15:32 -07:00
|
|
|
ServiceWorker: {
|
2018-05-28 15:43:47 -07:00
|
|
|
entry: `imports-loader?ATTACHMENT_HOST=>${encodeURIComponent(JSON.stringify(attachmentHost))}!${encodeURI(path.join(__dirname, '../../app/javascript/mastodon/service_worker/entry.js'))}`,
|
2017-07-13 13:15:32 -07:00
|
|
|
cacheName: 'mastodon',
|
2017-07-27 16:55:52 -07:00
|
|
|
output: '../assets/sw.js',
|
2017-07-13 13:15:32 -07:00
|
|
|
publicPath: '/sw.js',
|
|
|
|
minify: true,
|
|
|
|
},
|
|
|
|
}),
|
2017-05-20 08:31:47 -07:00
|
|
|
],
|
|
|
|
});
|