Skip to content
This repository was archived by the owner on Jan 26, 2019. It is now read-only.

Commit e12710b

Browse files
andykenwardwmonk
authored andcommitted
webpack no need for ident if using complex options anymore (#2430)
Since `v2.2.1` of webpack the need for `ident` for complex options is no longer required. See https://webpack.js.org/guides/migrating/#complex-options
1 parent 3fa1499 commit e12710b

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

packages/react-scripts/config/webpack.config.dev.js

-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,6 @@ module.exports = {
205205
{
206206
loader: require.resolve('postcss-loader'),
207207
options: {
208-
ident: 'postcss', // https://webpack.js.org/guides/migrating/#complex-options
209208
plugins: () => [
210209
require('postcss-flexbugs-fixes'),
211210
autoprefixer({

packages/react-scripts/config/webpack.config.prod.js

-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,6 @@ module.exports = {
207207
{
208208
loader: require.resolve('postcss-loader'),
209209
options: {
210-
ident: 'postcss', // https://webpack.js.org/guides/migrating/#complex-options
211210
plugins: () => [
212211
require('postcss-flexbugs-fixes'),
213212
autoprefixer({

0 commit comments

Comments
 (0)