mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-12 02:17:21 +08:00
12 lines
347 B
JavaScript
12 lines
347 B
JavaScript
|
const { merge } = require("webpack-merge");
|
||
|
const BundleAnalyzerPlugin =
|
||
|
require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
|
||
|
const PROD_CONFIG = require("./config.prod");
|
||
|
|
||
|
/** @type { import('webpack').Configuration } */
|
||
|
const AUDIT_CONFIG = {
|
||
|
plugins: [new BundleAnalyzerPlugin()],
|
||
|
};
|
||
|
|
||
|
module.exports = merge(PROD_CONFIG, AUDIT_CONFIG);
|