Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
Dartegnian committed Apr 16, 2024
2 parents 8092d51 + dc62ef7 commit f2738a8
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
26 changes: 26 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"@angular/service-worker": "^17.3.2",
"@angular/ssr": "^17.3.2",
"@material/material-color-utilities": "^0.2.7",
"@vercel/analytics": "^1.2.2",
"bootstrap": "^5.3.3",
"colorthief": "^2.4.0",
"express": "^4.19.2",
Expand Down
2 changes: 2 additions & 0 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { Component, OnInit, Inject, PLATFORM_ID } from '@angular/core';
import { AccentService } from '@services/accent-service.service';
import { IdbService } from '@services/idb.service';
import { UpdateService } from '@services/update.service';
import { inject } from '@vercel/analytics';

@Component({
selector: 'app-root',
Expand All @@ -20,6 +21,7 @@ export class AppComponent implements OnInit {
) {
this.sw.checkForUpdates();
this.isBrowser = isPlatformBrowser(this.platformId);
inject();
}

async ngOnInit() {
Expand Down

0 comments on commit f2738a8

Please sign in to comment.