Every time i create a project with npx create-react-app AppName
, when i run the project in the local server, i get the below warnings.
(node:13820) [DEP_WEBPACK_DEV_SERVER_ON_AFTER_SETUP_MIDDLEWARE] DeprecationWarning: 'onAfterSetupMiddleware' option is deprecated. Please use the 'setupMiddlewares' option.
(Use `node --trace-deprecation ...` to show where the warning was created)
(node:13820) [DEP_WEBPACK_DEV_SERVER_ON_BEFORE_SETUP_MIDDLEWARE] DeprecationWarning: 'onBeforeSetupMiddleware' option is deprecated. Please use the 'setupMiddlewares' option.
i can toggle off the warnings with modifying local files as webPackDevServer.config.js
file in node_modules
folder as detailed here. But i couldnt find any permanent solution. Is there any permanent solution to solve this issue?