Answers for "windows launch node with multiple environment variables"

0

windows launch node with multiple environment variables

#Powershell

$env:NODE_ENV="production"; $env:OTHER_ENV="foo"; npm run build

#CMD

set NODE_ENV=production && set OTHER_ENV=foo && npm run build
Posted by: Guest on April-15-2021

Code answers related to "windows launch node with multiple environment variables"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language