hedgedoc/webpack.prod.js
David Mehren acf24a1dd2 fix(esbuild): exclude reveal.js marked plugin
https://github.com/hedgedoc/hedgedoc/pull/4114
did not properly fix the missing speaker notes.

It turns out that by just excluding
reveal.js/plugin/markdown/marked.js
from esbuild processing, we can stop invalid JS from being generated.

Signed-off-by: David Mehren <git@herrmehren.de>
2023-06-04 20:31:21 +02:00

41 lines
1 KiB
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 { EsbuildPlugin } = 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 EsbuildPlugin({
target: 'es2015',
format: 'cjs',
exclude: ['MathJax/extensions/a11y/mathmaps', 'reveal.js/plugin/markdown/marked.js']
})
],
splitChunks: {
chunks: 'all'
}
},
devtool: 'source-map'
}),
merge(htmlexport, {
mode: 'production',
optimization: {
minimizer: [
new EsbuildPlugin({
target: 'es2015',
format: 'cjs'
}),
new OptimizeCSSAssetsPlugin({})
]
}
})]