Update to @astrolib/seo@1.0.0-beta.4

This commit is contained in:
prototypa
2023-08-23 03:30:08 -04:00
parent 3022d4424b
commit 9c40184240
3 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
import merge from 'lodash.merge';
import { AstroSeo } from '@astrolib/seo';
import type { AstroSeoProps } from '@astrolib/seo/src/types';
import type { AstroSeoProps } from '@astrolib/seo';
import { SITE, METADATA, I18N } from '~/utils/config';
import type { MetaData } from '~/types';

View File

@ -1,6 +1,6 @@
import { getImage } from 'astro:assets';
import type { ImageMetadata } from 'astro';
import type { OpenGraph } from '@astrolib/seo/src/types';
import type { OpenGraph } from '@astrolib/seo';
const load = async function () {
let images: Record<string, () => Promise<unknown>> | undefined = undefined;