Переписываю спорные решения

Фикс отправки отчета, проверка на массив в map в Description.js
This commit is contained in:
2023-01-20 16:20:06 +03:00
parent 642a8a9641
commit 56f63dbed2
50 changed files with 34327 additions and 9279 deletions

10
config/webpack/analyze.js Normal file
View File

@ -0,0 +1,10 @@
const { merge } = require('webpack-merge');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer')
.BundleAnalyzerPlugin;
const prod = require('./prod');
module.exports = merge(prod, {
plugins: [new BundleAnalyzerPlugin()]
});