Power Shell.- Set Environment Variables
1
2
3
4
5
6
7
$ENV:NODE_OPTIONS = '--max_old_space_size=8192'
[Environment]::SetEnvironmentVariable("NODE_OPTIONS", "--max_old_space_size=8192", "User")
$Env:JEKYLL_ENV = $null
$Env:JEKYLL_ENV = "production"
[Environment]:SetEnvironmentVariable("JEKYLL_ENV", "production", "User")
Esta entrada está licenciada bajo CC BY 4.0 por el autor.