Closed caroso1222 closed 4 years ago
This will prevent confusion like this one where users want to change mode to 'development' by changing the top-level const mode = process.env.NODE_ENV; only to realize it has no effect in the server and serviceworker configurations.
mode
const mode = process.env.NODE_ENV;
server
serviceworker
Thank you!
This will prevent confusion like this one where users want to change
mode
to 'development' by changing the top-levelconst mode = process.env.NODE_ENV;
only to realize it has no effect in theserver
andserviceworker
configurations.