2020-03-27 21:59:38 +01:00
|
|
|
// Note: You must restart bin/webpack-dev-server for changes to take effect
|
|
|
|
|
|
|
|
const webpack = require('webpack');
|
2020-06-05 00:31:17 +02:00
|
|
|
const { join, resolve } = require('path');
|
2020-03-27 21:59:38 +01:00
|
|
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
|
|
|
const AssetsManifestPlugin = require('webpack-assets-manifest');
|
2020-05-18 04:02:57 +02:00
|
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
|
|
const HtmlWebpackHarddiskPlugin = require('html-webpack-harddisk-plugin');
|
2021-04-17 20:30:22 +02:00
|
|
|
const CopyPlugin = require('copy-webpack-plugin');
|
2021-03-23 21:22:10 +01:00
|
|
|
const { UnusedFilesWebpackPlugin } = require('unused-files-webpack-plugin');
|
2021-07-21 23:43:41 +02:00
|
|
|
const { env, settings, output } = require('./configuration');
|
2020-03-27 21:59:38 +01:00
|
|
|
const rules = require('./rules');
|
|
|
|
|
2021-09-03 20:49:18 +02:00
|
|
|
const { FE_BASE_PATH } = require(join(__dirname, '..', 'app', 'soapbox', 'build_config'));
|
|
|
|
|
2021-08-31 02:17:32 +02:00
|
|
|
const htmlWebpackPluginConfig = {
|
|
|
|
template: 'app/index.ejs',
|
|
|
|
chunksSortMode: 'manual',
|
|
|
|
chunks: ['common', 'locale_en', 'application', 'styles'],
|
|
|
|
alwaysWriteToDisk: true,
|
|
|
|
minify: {
|
|
|
|
collapseWhitespace: true,
|
|
|
|
removeComments: false,
|
|
|
|
removeRedundantAttributes: true,
|
|
|
|
removeScriptTypeAttributes: true,
|
|
|
|
removeStyleLinkTypeAttributes: true,
|
|
|
|
useShortDoctype: true,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2020-03-27 21:59:38 +01:00
|
|
|
module.exports = {
|
|
|
|
entry: Object.assign(
|
2020-05-29 01:46:24 +02:00
|
|
|
{ application: resolve('app/application.js') },
|
2020-10-07 20:08:36 +02:00
|
|
|
{ styles: resolve(join(settings.source_path, 'styles/application.scss')) },
|
2020-03-27 21:59:38 +01:00
|
|
|
),
|
|
|
|
|
|
|
|
output: {
|
2021-07-21 23:43:41 +02:00
|
|
|
filename: 'packs/js/[name]-[chunkhash].js',
|
|
|
|
chunkFilename: 'packs/js/[name]-[chunkhash].chunk.js',
|
|
|
|
hotUpdateChunkFilename: 'packs/js/[id]-[hash].hot-update.js',
|
|
|
|
path: output.path,
|
2021-09-04 19:59:28 +02:00
|
|
|
publicPath: join(FE_BASE_PATH, '/'),
|
2020-03-27 21:59:38 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
optimization: {
|
|
|
|
runtimeChunk: {
|
|
|
|
name: 'common',
|
|
|
|
},
|
|
|
|
splitChunks: {
|
|
|
|
cacheGroups: {
|
|
|
|
default: false,
|
|
|
|
vendors: false,
|
|
|
|
common: {
|
|
|
|
name: 'common',
|
|
|
|
chunks: 'all',
|
|
|
|
minChunks: 2,
|
|
|
|
minSize: 0,
|
|
|
|
test: /^(?!.*[\\\/]node_modules[\\\/]react-intl[\\\/]).+$/,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
occurrenceOrder: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
module: {
|
|
|
|
rules: Object.keys(rules).map(key => rules[key]),
|
|
|
|
},
|
|
|
|
|
|
|
|
plugins: [
|
|
|
|
new webpack.EnvironmentPlugin(JSON.parse(JSON.stringify(env))),
|
|
|
|
new webpack.NormalModuleReplacementPlugin(
|
|
|
|
/^history\//, (resource) => {
|
|
|
|
// temporary fix for https://github.com/ReactTraining/react-router/issues/5576
|
|
|
|
// to reduce bundle size
|
|
|
|
resource.request = resource.request.replace(/^history/, 'history/es');
|
2020-10-07 20:08:36 +02:00
|
|
|
},
|
2020-03-27 21:59:38 +01:00
|
|
|
),
|
|
|
|
new MiniCssExtractPlugin({
|
2021-07-21 23:43:41 +02:00
|
|
|
filename: 'packs/css/[name]-[contenthash:8].css',
|
|
|
|
chunkFilename: 'packs/css/[name]-[contenthash:8].chunk.css',
|
2020-03-27 21:59:38 +01:00
|
|
|
}),
|
|
|
|
new AssetsManifestPlugin({
|
|
|
|
integrity: false,
|
|
|
|
entrypoints: true,
|
|
|
|
writeToDisk: true,
|
|
|
|
publicPath: true,
|
|
|
|
}),
|
2021-03-23 21:22:10 +01:00
|
|
|
// https://www.npmjs.com/package/unused-files-webpack-plugin#options
|
|
|
|
new UnusedFilesWebpackPlugin({
|
|
|
|
patterns: ['app/**/*.*'],
|
|
|
|
globOptions: {
|
|
|
|
ignore: ['node_modules/**/*', '**/__*__/**/*'],
|
|
|
|
},
|
|
|
|
}),
|
2021-08-31 02:17:32 +02:00
|
|
|
// https://github.com/jantimon/html-webpack-plugin#options
|
|
|
|
new HtmlWebpackPlugin(htmlWebpackPluginConfig),
|
|
|
|
new HtmlWebpackPlugin(Object.assign(htmlWebpackPluginConfig, { filename: '404.html' })),
|
2021-07-21 23:13:24 +02:00
|
|
|
new HtmlWebpackHarddiskPlugin(),
|
2021-04-17 20:30:22 +02:00
|
|
|
new CopyPlugin({
|
|
|
|
patterns: [{
|
|
|
|
from: join(__dirname, '../node_modules/twemoji/assets/svg'),
|
2021-07-21 23:43:41 +02:00
|
|
|
to: join(output.path, 'emoji'),
|
2021-04-17 21:21:12 +02:00
|
|
|
}, {
|
|
|
|
from: join(__dirname, '../node_modules/emoji-datasource/img/twitter/sheets/32.png'),
|
2021-07-21 23:43:41 +02:00
|
|
|
to: join(output.path, 'emoji/sheet_13.png'),
|
2021-09-03 20:06:04 +02:00
|
|
|
}, {
|
|
|
|
from: join(__dirname, '../app/sounds'),
|
|
|
|
to: join(output.path, 'sounds'),
|
|
|
|
}, {
|
|
|
|
from: join(__dirname, '../app/instance'),
|
|
|
|
to: join(output.path, 'instance'),
|
2021-04-17 20:30:22 +02:00
|
|
|
}],
|
|
|
|
options: {
|
|
|
|
concurrency: 100,
|
|
|
|
},
|
|
|
|
}),
|
2020-03-27 21:59:38 +01:00
|
|
|
],
|
|
|
|
|
|
|
|
resolve: {
|
|
|
|
extensions: settings.extensions,
|
|
|
|
modules: [
|
|
|
|
resolve(settings.source_path),
|
|
|
|
'node_modules',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
|
|
|
resolveLoader: {
|
|
|
|
modules: ['node_modules'],
|
|
|
|
},
|
|
|
|
|
|
|
|
node: {
|
|
|
|
// Called by http-link-header in an API we never use, increases
|
|
|
|
// bundle size unnecessarily
|
|
|
|
Buffer: false,
|
|
|
|
},
|
|
|
|
};
|