what are the options you…

less than 1 minute read

what are the options you’ve taken when dealing with apps that don’t work when using this option in none to avoid having really large node_modules folders in your servers?

Responses:

we manage seperate package.json files for the production deploys of each of our servers. Which include only the necessary dependencies

so you need to mantain package.json separately but those are not the ones that are used at build time, right?

because if you build with nx you need to build at the root of the project, correct?

Yes, there is the global one used at build time but we use a seperate one for installing just the dependencies we need on our docker images

are you using nx through angular.json?

yup

Updated: