You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is not a bug but it might need someone knowledgeable in the CRA webpack config to take a look.
Since 1.0.15 running npm start will generate the following console message:
The `setup` option is deprecated and will be removed in v3. Please update your config to use `before`
This warning is coming from the webpack-dev-server module and is in danger of confusing users. The issue is caused by the use of the packages/react-scripts/config/webpackDevServer.config.jssetup function (line 98.)
This is not a bug but it might need someone knowledgeable in the CRA webpack config to take a look.
Since 1.0.15 running
npm start
will generate the following console message:This warning is coming from the
webpack-dev-server
module and is in danger of confusing users. The issue is caused by the use of thepackages/react-scripts/config/webpackDevServer.config.js
setup
function (line 98.)More info here:
https://webpack.js.org/configuration/dev-server/#devserver-setup
I do not know if simply moving the code from
setup
tobefore
will be enough to address this.The text was updated successfully, but these errors were encountered: