Skip to content

Commit

Permalink
fix: meta data service, app config and process.env def
Browse files Browse the repository at this point in the history
  • Loading branch information
valerymelou committed Sep 10, 2024
1 parent 3a77bed commit 429e771
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion apps/website/src/app/app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ export const appConfig: ApplicationConfig = {
provideClientHydration(),
provideZoneChangeDetection({ eventCoalescing: true }),
provideRouter(appRoutes),
provideRouter(appRoutes),
{
provide: WINDOW_TOKEN,
useFactory: () => {
Expand Down
1 change: 1 addition & 0 deletions apps/website/src/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ declare const process: {
VM_CONTENTFUL_SPACE: string;
VM_CONTENTFUL_ENVIRONMENT: string;
VM_CONTENTFUL_ACCESS_TOKEN: string;
PORT: number;
};
};
2 changes: 1 addition & 1 deletion libs/shared/seo/src/lib/metadata.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export class MetadataService {
{ name: 'twitter:card', content: 'summary' },
{ name: 'twitter:site', content: '@valerymelou' },
{ name: 'twitter:title', content: metadata.title },
{ name: 'twitter:description', content: imageUrl },
{ name: 'twitter:description', content: metadata.description },
{ name: 'twitter:image', content: imageUrl },
{ name: 'twitter:image:alt', content: metadata.imageAlt },
];
Expand Down

0 comments on commit 429e771

Please sign in to comment.