mirror of
https://github.com/BradNut/personal-website-sveltekit
synced 2025-09-08 23:20:18 +00:00
Fix build error on type import.
This commit is contained in:
parent
854241e5da
commit
285336624a
1 changed files with 2 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
|||
<script lang="ts">
|
||||
import { MetaTags, type MetaTagsProps } from 'svelte-meta-tags';
|
||||
import { MetaTags } from 'svelte-meta-tags';
|
||||
import NProgress from "nprogress";
|
||||
import 'iconify-icon';
|
||||
import { browser } from "$app/environment";
|
||||
|
|
@ -28,7 +28,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
$: metaTags: MetaTagsProps = {
|
||||
$: metaTags = {
|
||||
titleTemplate: '%s | Bradley Shellnut',
|
||||
openGraph: {
|
||||
type: 'website',
|
||||
|
|
|
|||
Loading…
Reference in a new issue