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
We are planing to make this easier in the future, part of the documentation generation, but there is a solution right not that you can use.
// roc.config.jsmodule.exports={project: {actions: [{hook: 'build-webpack',action: ()=>()=>(webpackConfig)=>{// Logs the Webpack configuration before the roc.config.webpack is applied.// If we want the configuration with the roc.config.webpack applied we need to do // a little more work.console.log(JSON.stringify(webpackConfig,null,2));returnwebpackConfig;}}]}};
hi!
I tried roc and it realy looks nice. Is there any way to get the webpack.config the project is effectively using?
something like
roc webpack > webpack.config.js
would be nice.thanks!
The text was updated successfully, but these errors were encountered: