104 строки
3.1 KiB
JavaScript
104 строки
3.1 KiB
JavaScript
/* eslint-disable max-len, import/no-extraneous-dependencies */
|
|
import path from 'path';
|
|
|
|
import config from 'config';
|
|
import MiniCssExtractPlugin from 'mini-css-extract-plugin';
|
|
import SriPlugin from 'webpack-subresource-integrity';
|
|
import WebpackIsomorphicToolsPlugin from 'webpack-isomorphic-tools/plugin';
|
|
import TerserPlugin from 'terser-webpack-plugin';
|
|
import OptimizeCssAssetsPlugin from 'optimize-css-assets-webpack-plugin';
|
|
|
|
import SriDataPlugin from './src/core/server/sriDataPlugin';
|
|
import { getPlugins, getRules } from './webpack-common';
|
|
import webpackIsomorphicToolsConfig from './src/core/server/webpack-isomorphic-tools-config';
|
|
|
|
const appName = config.get('appName');
|
|
const appsBuildList = appName ? [appName] : config.get('validAppNames');
|
|
|
|
const entryPoints = {};
|
|
for (const app of appsBuildList) {
|
|
entryPoints[app] = `${app}/client`;
|
|
}
|
|
|
|
export default {
|
|
mode: 'production',
|
|
devtool: 'source-map',
|
|
context: path.resolve(__dirname),
|
|
entry: entryPoints,
|
|
output: {
|
|
crossOriginLoading: 'anonymous',
|
|
path: path.join(__dirname, 'dist'),
|
|
filename: '[name]-[chunkhash].js',
|
|
chunkFilename: '[name]-[chunkhash].js',
|
|
publicPath: config.has('staticHost') ? `${config.get('staticHost')}/` : '/',
|
|
},
|
|
module: {
|
|
rules: getRules(),
|
|
},
|
|
node: {
|
|
// This allows us to use `__filename` in our code base, for instance to
|
|
// have unique names in the error handlers.
|
|
__filename: true,
|
|
},
|
|
optimization: {
|
|
minimizer: [
|
|
// We do not use UglifyJsPlugin because it does not work as intended with
|
|
// our config, but TerserPlugin is very similar.
|
|
new TerserPlugin({
|
|
cache: true,
|
|
parallel: true,
|
|
// Even though devtool is set to source-map, this must be true to
|
|
// output source maps:
|
|
sourceMap: true,
|
|
// Do not change these options without busting the cache.
|
|
// See: https://github.com/mozilla/addons-frontend/issues/5796
|
|
terserOptions: {
|
|
output: {
|
|
comments: false,
|
|
},
|
|
compress: {
|
|
drop_console: true,
|
|
},
|
|
},
|
|
}),
|
|
new OptimizeCssAssetsPlugin({
|
|
cssProcessorPluginOptions: {
|
|
preset: [
|
|
'default',
|
|
{
|
|
svgo: {
|
|
plugins: [
|
|
{
|
|
// There is a bug in this optimization.
|
|
// See https://github.com/mozilla/addons-frontend/issues/7191
|
|
convertPathData: false,
|
|
},
|
|
],
|
|
},
|
|
},
|
|
],
|
|
},
|
|
}),
|
|
],
|
|
},
|
|
plugins: [
|
|
...getPlugins(),
|
|
new MiniCssExtractPlugin({
|
|
filename: '[name]-[hash].css',
|
|
chunkFilename: '[name]-[hash].css',
|
|
}),
|
|
new WebpackIsomorphicToolsPlugin(webpackIsomorphicToolsConfig),
|
|
new SriPlugin({ hashFuncNames: ['sha512'] }),
|
|
new SriDataPlugin({
|
|
saveAs: path.join(__dirname, 'dist', 'sri.json'),
|
|
}),
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
tests: path.resolve('./tests'),
|
|
},
|
|
modules: [path.resolve('./src'), 'node_modules'],
|
|
extensions: ['.js', '.jsx'],
|
|
},
|
|
};
|