Venkateswaran R
Venkateswaran R

Reputation: 478

Can we reuse one environment build files into another build without doing npm run build in angular

I have used more than 3 environments in angular. Is it possible to reuse of one environment built files into remaining environments without doing build. If it possible means how can we do it. I need configuration setup for it.

Upvotes: 0

Views: 148

Answers (1)

Osanda Wedamulla
Osanda Wedamulla

Reputation: 122

You can't use the build files because those files are already in a build state with minification and compression with the environment you sepecify . You have the buld again with the environment you want.

Upvotes: 2

Related Questions