2017-05-03 02:04:16 +02:00
|
|
|
// Note: You must restart bin/webpack-dev-server for changes to take effect
|
|
|
|
|
2019-03-15 15:05:31 +01:00
|
|
|
const path = require('path');
|
|
|
|
const { URL } = require('url');
|
2020-11-04 18:21:28 +01:00
|
|
|
const { merge } = require('webpack-merge');
|
2019-03-15 15:05:31 +01:00
|
|
|
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
|
|
|
|
const OfflinePlugin = require('offline-plugin');
|
2019-06-04 14:17:09 +02:00
|
|
|
const TerserPlugin = require('terser-webpack-plugin');
|
2017-05-20 17:31:47 +02:00
|
|
|
const CompressionPlugin = require('compression-webpack-plugin');
|
2019-03-15 15:05:31 +01:00
|
|
|
const { output } = require('./configuration');
|
|
|
|
const sharedConfig = require('./shared');
|
2017-05-03 02:04:16 +02:00
|
|
|
|
2018-05-29 00:43:47 +02:00
|
|
|
let attachmentHost;
|
|
|
|
|
|
|
|
if (process.env.S3_ENABLED === 'true') {
|
2018-08-25 13:27:08 +02: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-29 00:43:47 +02: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-03 02:04:16 +02:00
|
|
|
module.exports = merge(sharedConfig, {
|
2018-07-14 03:56:41 +02:00
|
|
|
mode: 'production',
|
2019-03-15 15:05:31 +01:00
|
|
|
devtool: 'source-map',
|
2017-06-18 02:57:09 +02:00
|
|
|
stats: 'normal',
|
2019-03-15 15:05:31 +01:00
|
|
|
bail: true,
|
2018-07-14 03:56:41 +02:00
|
|
|
optimization: {
|
|
|
|
minimize: true,
|
|
|
|
minimizer: [
|
2019-06-04 14:17:09 +02:00
|
|
|
new TerserPlugin({
|
2018-10-06 08:12:05 +02:00
|
|
|
cache: true,
|
|
|
|
parallel: true,
|
2018-07-14 03:56:41 +02:00
|
|
|
sourceMap: true,
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
|
|
|
plugins: [
|
2017-05-03 02:04:16 +02:00
|
|
|
new CompressionPlugin({
|
2021-06-25 04:45:04 +02:00
|
|
|
filename: '[path][base].gz[query]',
|
2019-03-15 15:05:31 +01:00
|
|
|
cache: true,
|
|
|
|
test: /\.(js|css|html|json|ico|svg|eot|otf|ttf|map)$/,
|
2017-05-20 17:31:47 +02:00
|
|
|
}),
|
2019-03-16 11:23:54 +01:00
|
|
|
new BundleAnalyzerPlugin({ // generates report.html
|
2017-05-22 15:42:11 +02:00
|
|
|
analyzerMode: 'static',
|
|
|
|
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({
|
2019-03-15 15:05:31 +01:00
|
|
|
publicPath: output.publicPath, // sw.js must be served from the root to avoid scope issues
|
2019-06-04 14:17:09 +02:00
|
|
|
safeToUseOptionalCaches: true,
|
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
|
2018-06-10 16:12:47 +02:00
|
|
|
'/emoji/sheet_10.png', // used in emoji-mart
|
2017-10-31 12:25:51 +01:00
|
|
|
],
|
|
|
|
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: {
|
2020-08-25 15:50:47 +02:00
|
|
|
entry: `imports-loader?additionalCode=${encodeURIComponent(`var ATTACHMENT_HOST=${JSON.stringify(attachmentHost)};`)}!${encodeURI(path.join(__dirname, '../../app/javascript/mastodon/service_worker/entry.js'))}`,
|
2017-07-13 22:15:32 +02:00
|
|
|
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
|
|
|
],
|
|
|
|
});
|