I'm deploying an angular app using ng build --prod
. All I want is to let the user using the dist
folder can simply change in config.json
file in the asset
folder so that he can set his settings and my app will use that modified config.json
file.
Is it possible after I run ng build --prod
to have a config.json
file in the build folder that the user can go and directly modify?
If not, is there any better way to accomplish that using another strategy?