We will be sunsetting Advisor during Jan, 2026 and will instead be providing information in Snyk Security DB.

You can begin to take advantage of Snyk Security DB today for a unified, package-centric experience.

How to use the @singleton-i18n/angular-client.VIPModule.forRoot function in @singleton-i18n/angular-client

To help you get started, we’ve selected a few @singleton-i18n/angular-client examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github vmware / singleton / sample / src / app / app.module.ts View on Github external
sourceBundle: ENGLISH,
        timeout: 5000
    });
}

@NgModule({
    declarations: [
        AppComponent
    ],
    imports: [
        BrowserModule,
        AppRoutingModule,
        HttpClientModule,
        ClarityModule,
        L10nModule,
        VIPModule.forRoot({
            coreLoader: {
                provide: I18nLoader,
                useClass: VIPLoader
            }
        }),
        I18nModule,
        VIPHeaderModule,
    ],
    providers: [
        {
            provide: APP_INITIALIZER,
            useFactory: initVIPConfig,
            deps: [
                VIPService,
                LocaleService
            ],