lyrn export
Export configuration files:
lyrn export config
This command exports Webpack configurations for development (webpack.config.dev.js
) and production (webpack.config.prod.js
) environments.
Also, as a result of the export, an entry will be made in the lyrn.json
file about the exported files:
{
"dev": {
"config": "webpack.config.dev.js"
},
"prod": {
"config": "webpack.config.prod.js"
}
}