overleaf/services/web/webpack.config.prod.js
Alf Eaton 81816cfa2c Merge pull request #8028 from overleaf/ae-css-minimizer
Disable cssnano mergeLonghand optimisation in production webpack config

GitOrigin-RevId: cfd19ae5bdbcb86a9c97035b230f5f03f5c7aad0
2022-05-20 08:04:14 +00:00

44 lines
1.3 KiB
JavaScript

const { merge } = require('webpack-merge')
const TerserPlugin = require('terser-webpack-plugin')
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const base = require('./webpack.config')
module.exports = merge(
base,
{
mode: 'production',
// Enable a full source map. Generates a comment linking to the source map
devtool: 'hidden-source-map',
optimization: {
// Minify JS (with Terser) and CSS (with cssnano)
minimizer: [
new TerserPlugin({
terserOptions: {
keep_classnames: /(Error|Exception)$/,
keep_fnames: /(Error|Exception)$/,
},
}),
new CssMinimizerPlugin({
minimizerOptions: {
// disable mergeLonghand to avoid a cssnano bug https://github.com/cssnano/cssnano/issues/864
preset: ['default', { mergeLonghand: false }],
},
}),
],
},
plugins: [
// Extract CSS to a separate file (rather than inlining to a <style> tag)
new MiniCssExtractPlugin({
// Output to public/stylesheets directory and append hash for immutable
// caching
filename: 'stylesheets/[name]-[contenthash].css',
}),
],
},
{}
)