Hi,
I have a combined solution with angular and ASP.NET core. I was able to publish my app easily previously. My project is growing and compilation process needs more memory. Therefore, when I publish my app now I have an exception due to lack of memory.
This is a known issue : I'm able to build separatly my angular app with this command : <a class="postlink" href="https://github.com/angular/angular-cli/issues/5618">https://github.com/angular/angular-cli/issues/5618</a> node --max-old-space-size=4096 ./node_modules/@angular/cli/bin/ng build --prod
How can I set this command to be executed in my visual studio solution when publishing my app ?
Right now, the build script is launching command ng build --prod alone and I don't know how to change it...