mirror of
https://github.com/Smaug123/KaTeX
synced 2025-10-04 18:58:39 +00:00
* chore(deps): update dependency flow-bin to v0.134.0 [skip netlify] * Fix flow errors Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Young Min Kin <mail@ylem.kim>
14 lines
423 B
JavaScript
14 lines
423 B
JavaScript
// @flow
|
|
const {targets, createConfig} = require('./webpack.common');
|
|
// $FlowIgnore
|
|
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
|
|
|
|
// dev minify
|
|
const katexConfig /*: Object */ = createConfig(targets.shift(), false, false);
|
|
|
|
katexConfig.plugins.push(new BundleAnalyzerPlugin());
|
|
|
|
module.exports = [
|
|
katexConfig,
|
|
];
|