@@ -18,7 +18,7 @@ const InlineChunkHtmlPlugin = require('react-dev-utils/InlineChunkHtmlPlugin');
18
18
const TerserPlugin = require ( 'terser-webpack-plugin' ) ;
19
19
const MiniCssExtractPlugin = require ( 'mini-css-extract-plugin' ) ;
20
20
const CssMinimizerPlugin = require ( 'css-minimizer-webpack-plugin' ) ;
21
- const { WebpackManifestPlugin } = require ( 'webpack-manifest-plugin' ) ;
21
+ // const { WebpackManifestPlugin } = require('webpack-manifest-plugin');
22
22
const InterpolateHtmlPlugin = require ( 'react-dev-utils/InterpolateHtmlPlugin' ) ;
23
23
const WorkboxWebpackPlugin = require ( 'workbox-webpack-plugin' ) ;
24
24
const WatchMissingNodeModulesPlugin = require ( 'react-dev-utils/WatchMissingNodeModulesPlugin' ) ;
@@ -656,7 +656,7 @@ module.exports = function (webpackEnv) {
656
656
// `index.html`
657
657
// - "entrypoints" key: Array of files which are included in `index.html`,
658
658
// can be used to reconstruct the HTML if necessary
659
- new WebpackManifestPlugin ( {
659
+ /* new WebpackManifestPlugin({
660
660
fileName: 'asset-manifest.json',
661
661
publicPath: paths.publicUrlOrPath,
662
662
generate: (seed, files, entrypoints) => {
@@ -673,7 +673,7 @@ module.exports = function (webpackEnv) {
673
673
entrypoints: entrypointFiles,
674
674
};
675
675
},
676
- } ) ,
676
+ }),*/
677
677
// Moment.js is an extremely popular library that bundles large locale files
678
678
// by default due to how webpack interprets its code. This is a practical
679
679
// solution that requires the user to opt into importing specific locales.
0 commit comments