`MathJax/extensions/a11y/mathmaps` contains .js files that are not actually valid JavaScript, tripping up ESBuild. This excludes them from the minification step Signed-off-by: David Mehren <git@herrmehren.de>
		
			
				
	
	
		
			37 lines
		
	
	
		
			920 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			920 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const common = require('./webpack.common.js')
 | 
						|
const htmlexport = require('./webpack.htmlexport')
 | 
						|
const { merge } = require('webpack-merge')
 | 
						|
const path = require('path')
 | 
						|
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin')
 | 
						|
const { ESBuildMinifyPlugin } = require('esbuild-loader')
 | 
						|
 | 
						|
module.exports = [
 | 
						|
  merge(common, {
 | 
						|
    mode: 'production',
 | 
						|
    output: {
 | 
						|
      path: path.join(__dirname, 'public/build'),
 | 
						|
      publicPath: 'build/',
 | 
						|
      filename: '[name].[contenthash].js'
 | 
						|
    },
 | 
						|
    optimization: {
 | 
						|
      minimizer: [
 | 
						|
        new ESBuildMinifyPlugin({
 | 
						|
          target: 'es2015',
 | 
						|
          exclude: ['MathJax/extensions/a11y/mathmaps']
 | 
						|
        })
 | 
						|
      ],
 | 
						|
      splitChunks: {
 | 
						|
        chunks: 'all'
 | 
						|
      }
 | 
						|
    },
 | 
						|
    devtool: 'source-map'
 | 
						|
  }),
 | 
						|
  merge(htmlexport, {
 | 
						|
    mode: 'production',
 | 
						|
    optimization: {
 | 
						|
      minimizer: [
 | 
						|
        new OptimizeCSSAssetsPlugin({})
 | 
						|
      ]
 | 
						|
    }
 | 
						|
  })]
 |