@Component({
selector: 'some-component',
templateUrl: `./app/component/stuff/component.html?v=${new Date().getTime()}`,
styleUrls: [`./app/component/stuff/component.css?v=${new Date().getTime()}`]
})
Can I use like above in Angular 7?
I need to clear the browser cache. I am referred this answer and but this for angular 2.
Application hosted on the IIS
So far I have tried the below answers but no output.
1)Cache busting after deploying Angular 8 application