CopyPastor

Detecting plagiarism made easy.

Score: 1; Reported for: Exact paragraph match Open both answers

Possible Plagiarism

Reposted on 2024-04-21
by Ievgen

Original Post

Original - Posted on 2024-04-21
by Ievgen



            
Present in both answers; Present only in the new answer; Present only in the old answer;

You can only change hash part as "outputHashing": "none" in the **Angular.json**
{ "projects": { "myApp": { "architect": { "build": { "options": { "outputHashing": "none" } } } } }
Or to pass argument to the cli:
ng build --output-hashing=none
Then when files are ready, you can use **grep** in linux to **replace names values in the index.html** and **rename files**.
Set "outputHashing": "none" in the **Angular.json**
{ "projects": { "myApp": { "architect": { "build": { "options": { "outputHashing": "none" } } } } }
Another option is to pass argument to the cli:
ng build --output-hashing=none

        
Present in both answers; Present only in the new answer; Present only in the old answer;