diff --git a/packages/react-scripts/config/webpack.config.dev.js b/packages/react-scripts/config/webpack.config.dev.js index f5ac385aea3..ea8a8f51e79 100644 --- a/packages/react-scripts/config/webpack.config.dev.js +++ b/packages/react-scripts/config/webpack.config.dev.js @@ -294,7 +294,7 @@ module.exports = { // that fall through the other loaders. { // Exclude `js` files to keep "css" loader working as it injects - // its runtime that would otherwise processed through "file" loader. + // its runtime that would otherwise be processed through "file" loader. // Also exclude `html` and `json` extensions so they get processed // by webpacks internal loaders. exclude: [/\.(js|jsx|mjs)$/, /\.html$/, /\.json$/], diff --git a/packages/react-scripts/config/webpack.config.prod.js b/packages/react-scripts/config/webpack.config.prod.js index f831a1dd766..b4582cbe23c 100644 --- a/packages/react-scripts/config/webpack.config.prod.js +++ b/packages/react-scripts/config/webpack.config.prod.js @@ -336,7 +336,7 @@ module.exports = { { loader: require.resolve('file-loader'), // Exclude `js` files to keep "css" loader working as it injects - // it's runtime that would otherwise processed through "file" loader. + // it's runtime that would otherwise be processed through "file" loader. // Also exclude `html` and `json` extensions so they get processed // by webpacks internal loaders. exclude: [/\.(js|jsx|mjs)$/, /\.html$/, /\.json$/],