Warning, file /firebird/firebird-ng/webpack.config.js was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 const path = require('path');
0002 const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
0003
0004 module.exports = {
0005 resolve: {
0006 alias: {
0007
0008
0009 }
0010 },
0011 plugins: [
0012 new BundleAnalyzerPlugin({
0013 analyzerMode: 'static',
0014 reportFilename: 'bundle-report.html',
0015 openAnalyzer: false,
0016 generateStatsFile: true
0017
0018 })
0019 ]
0020 };