I'm using Angular11 in my current application and I'm using Title service to update the page title. But I can achieve the same using document.title=""
.
In my case, using Angular Title service is really beneficial? Or I'm just increasing my bundle size by importing the unnecessary Title service?
Angular documentation says - Angular Title is helpful if the application into different platform. And importing Title service costs my bundle 6.7KB.
Can I go with document.title
? I'm looking for suggestions.