А как сервис в ангуляре сделать синглтоном нативно, есть какой-то параметр в декораторе инжектабл?
There are two ways to make a service a singleton in Angular: 1. Set the providedIn property of the @Injectable() to "root". 2. Include the service in the AppModule or in a module that is only imported by the AppModule
There are two ways to make a service a singleton in Angular: 1. Set the providedIn property of the @Injectable() to "root". 2. Include the service in the AppModule or in a module that is only imported by the AppModule