Write in app.component.ts file:
Write your environment.prod.ts file like:
import
{ environment } from
'../environments/environment.prod';
ngOnInit()
{
if (!isDevMode()
&& environment.production)
{
if (location.protocol
=== 'http:') {
window.location.href
= location.href.replace('http',
'https');
}
}
}
Write your environment.prod.ts file like:
export const environment = {
production: true
};
0 comments:
Post a Comment