Skip to content

Commit

Permalink
fix(no-ref): import
Browse files Browse the repository at this point in the history
  • Loading branch information
lachesse committed May 29, 2024
1 parent 1ef91ac commit 6f78d82
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
import { ɵprovideZonelessChangeDetection } from '@angular/core';

import { provideZoneChangeDetection } from '@angular/core';
import { provideHttpClient } from '@angular/common/http';
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { provideEnvironmentNgxLoaderIndicator } from 'ngx-loader-indicator';
import { provideAnimations } from '@angular/platform-browser/animations';
import { HIGHLIGHT_OPTIONS } from 'ngx-highlightjs';
import { provideRouter } from '@angular/router';
import { BaseHttpService } from '@libraries/base-http/base-http.service';
import { GithubStarsService } from '@libraries/github/github-stars.service';
import { provideHttpClient } from '@angular/common/http';
import { DOMAIN } from '@libraries/token/token';
import { BaseHttpService } from '@libraries/base-http/base-http.service';
import { HIGHLIGHT_OPTIONS } from 'ngx-highlightjs';
import { provideEnvironmentNgxLoaderIndicator } from 'ngx-loader-indicator';
import { AppComponent } from './app/app.component';

bootstrapApplication(AppComponent, {
providers: [
ɵprovideZonelessChangeDetection(),
provideZoneChangeDetection(),
provideAnimations(),
provideRouter([]),
GithubStarsService,
Expand Down

0 comments on commit 6f78d82

Please sign in to comment.