'What is the use of --output-hashing=all in angular build?
When we create build for production then we use a command as -
ng build --aot --output-hashing=all --prod --base-href "/xyz/" --deploy-url "/xyz/"
What is use of --output-hashing=all?
Solution 1:[1]
From Angular Documentation:
Define the output filename cache-busting hashing mode.
So, if your parameter is all, your generated files would look like:
main.62beb1fb93041eb44194.js
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 |
