This repository was archived by the owner on Feb 15, 2025. It is now read-only.

Description
In order to add Cypress component testing to a project, I need access to the webpack.config.js
file. There is effectively no way to "eject" a React app generated using nwb
(to use create-react-app
terminology).
The FAQ tells you how to set the debug flag to view the generated Webpack configuration, but it renders the runtime representation (aka console.log
) which contains things like [Function]
and cannot be copied. It might be possible for me to re-create the Webpack config file by diving into the nwb
codebase, but nwb
should be able to simply write out the config file being used so it can be require()
-d by other tools.