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
Upgrading Project to CRA 5, with a .env.development.local file configured with HTTPS settings, gives warning:
(node:48148) [DEP_WEBPACK_DEV_SERVER_HTTPS] DeprecationWarning: 'https' option is deprecated. Please use the 'server' option.
(Use `node --trace-deprecation ...` to show where the warning was created)
Did you try recovering your dependencies?
Yes
Environment
current version of create-react-app: 5.0.0
System:
OS: Windows 10 10.0.19044
CPU: (24) x64 AMD Ryzen 9 3900X 12-Core Processor
Binaries:
Node: 16.13.1 - C:\Program Files\nodejs\node.EXE
Yarn: 1.22.4 - C:\Program Files (x86)\Yarn\bin\yarn.CMD
npm: 8.3.0 - ~\AppData\Roaming\npm\npm.CMD
Browsers:
Chrome: 96.0.4664.93
Edge: Spartan (44.19041.1266.0), Chromium (96.0.1054.53)
Internet Explorer: 11.0.19041.1202
npmPackages:
react: ^17.0.2 => 17.0.2
react-dom: ^17.0.2 => 17.0.2
react-scripts: ^5.0.0 => 5.0.0
npmGlobalPackages:
create-react-app: Not Found
(paste the output of the command here.)
Steps to reproduce
Create .env.development.local file with contents similar to :
(node:48148) [DEP_WEBPACK_DEV_SERVER_HTTPS] DeprecationWarning: 'https' option is deprecated. Please use the 'server' option.
(Use `node --trace-deprecation ...` to show where the warning was created)
Expected behavior
No warning should occur.
Actual behavior
A warning is issued on startup, app still funcitons.
(node:48148) [DEP_WEBPACK_DEV_SERVER_HTTPS] DeprecationWarning: 'https' option is deprecated. Please use the 'server' option.
(Use `node --trace-deprecation ...` to show where the warning was created)
Further info
If I execute via CRACO and log the output of the webpack config I see:
jafin
changed the title
[BUG] CRA5.0.0 [DEP_WEBPACK_DEV_SERVER_HTTPS] warning on start with .env file configured for https
[BUG] CRA5.0.0 [DEP_WEBPACK_DEV_SERVER_HTTPS] warning on start with .env file configured for HTTPS
Dec 15, 2021
jafin
changed the title
[BUG] CRA5.0.0 [DEP_WEBPACK_DEV_SERVER_HTTPS] warning on start with .env file configured for HTTPS
[BUG] CRA5.0.0 [DEP_WEBPACK_DEV_SERVER_HTTPS] DeprecationWarning on start with .env file configured for HTTPS
Dec 17, 2021
Describe the bug
Upgrading Project to CRA 5, with a
.env.development.local
file configured with HTTPS settings, gives warning:Did you try recovering your dependencies?
Yes
Environment
current version of create-react-app: 5.0.0
System:
OS: Windows 10 10.0.19044
CPU: (24) x64 AMD Ryzen 9 3900X 12-Core Processor
Binaries:
Node: 16.13.1 - C:\Program Files\nodejs\node.EXE
Yarn: 1.22.4 - C:\Program Files (x86)\Yarn\bin\yarn.CMD
npm: 8.3.0 - ~\AppData\Roaming\npm\npm.CMD
Browsers:
Chrome: 96.0.4664.93
Edge: Spartan (44.19041.1266.0), Chromium (96.0.1054.53)
Internet Explorer: 11.0.19041.1202
npmPackages:
react: ^17.0.2 => 17.0.2
react-dom: ^17.0.2 => 17.0.2
react-scripts: ^5.0.0 => 5.0.0
npmGlobalPackages:
create-react-app: Not Found
(paste the output of the command here.)
Steps to reproduce
execute:
Verify warning on startup:
Expected behavior
No warning should occur.
Actual behavior
A warning is issued on startup, app still funcitons.
Further info
If I execute via CRACO and log the output of the webpack config I see:
create-react-app/packages/react-scripts/config/webpackDevServer.config.js
Line 102 in 20edab4
whereas I believe this is expected:
As per the webpack 5 docs: https://webpack.js.org/configuration/dev-server/#devserverserver
If I configure craco with a config which maps the properties in the expected shape, the warning disappears (from npm start run):
The text was updated successfully, but these errors were encountered: