mirror of
https://github.com/Smaug123/KaTeX
synced 2025-10-04 18:58:39 +00:00
14 lines
383 B
JavaScript
14 lines
383 B
JavaScript
// @flow
|
|
const { targets, createConfig } = require('./webpack.common');
|
|
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
|
|
|
|
// dev minify
|
|
const katexConfig = createConfig(targets.shift(), false, false);
|
|
|
|
katexConfig.plugins.push(new BundleAnalyzerPlugin());
|
|
|
|
module.exports = [
|
|
katexConfig,
|
|
];
|
|
|