mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-26 14:59:14 +01:00
bugfix/#741 - upgrade gatsby-remark-relative-images
This commit is contained in:
parent
a8bec70254
commit
fe42497431
@ -18,8 +18,8 @@ module.exports = {
|
|||||||
{
|
{
|
||||||
resolve: 'gatsby-source-filesystem',
|
resolve: 'gatsby-source-filesystem',
|
||||||
options: {
|
options: {
|
||||||
path: `${__dirname}/content`,
|
path: `${__dirname}/static`,
|
||||||
name: 'pages'
|
name: 'assets'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -32,15 +32,15 @@ module.exports = {
|
|||||||
{
|
{
|
||||||
resolve: 'gatsby-source-filesystem',
|
resolve: 'gatsby-source-filesystem',
|
||||||
options: {
|
options: {
|
||||||
name: 'css',
|
path: `${__dirname}/content`,
|
||||||
path: `${__dirname}/static/css`
|
name: 'pages'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
resolve: 'gatsby-source-filesystem',
|
resolve: 'gatsby-source-filesystem',
|
||||||
options: {
|
options: {
|
||||||
name: 'assets',
|
name: 'css',
|
||||||
path: `${__dirname}/static`
|
path: `${__dirname}/static/css`
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
// @flow strict
|
// @flow strict
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Helmet from 'react-helmet';
|
import Helmet from 'react-helmet';
|
||||||
import { withPrefix } from 'gatsby';
|
|
||||||
import type { Node as ReactNode } from 'react';
|
import type { Node as ReactNode } from 'react';
|
||||||
import { useSiteMetadata } from '../../hooks';
|
import { useSiteMetadata } from '../../hooks';
|
||||||
import styles from './Layout.module.scss';
|
import styles from './Layout.module.scss';
|
||||||
@ -21,7 +20,7 @@ const Layout = ({
|
|||||||
}: Props) => {
|
}: Props) => {
|
||||||
const { author, url } = useSiteMetadata();
|
const { author, url } = useSiteMetadata();
|
||||||
const metaImage = socialImage != null ? socialImage : author.photo;
|
const metaImage = socialImage != null ? socialImage : author.photo;
|
||||||
const metaImageUrl = url + withPrefix(metaImage);
|
const metaImageUrl = url + metaImage;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={styles.layout}>
|
<div className={styles.layout}>
|
||||||
|
@ -19,9 +19,10 @@ const PageTemplate = ({ data }: Props) => {
|
|||||||
const { frontmatter } = data.markdownRemark;
|
const { frontmatter } = data.markdownRemark;
|
||||||
const { title: pageTitle, description: pageDescription, socialImage } = frontmatter;
|
const { title: pageTitle, description: pageDescription, socialImage } = frontmatter;
|
||||||
const metaDescription = pageDescription !== null ? pageDescription : siteSubtitle;
|
const metaDescription = pageDescription !== null ? pageDescription : siteSubtitle;
|
||||||
|
const socialImageUrl = socialImage ? socialImage['publicURL'] : '';
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Layout title={`${pageTitle} - ${siteTitle}`} description={metaDescription} socialImage={socialImage} >
|
<Layout title={`${pageTitle} - ${siteTitle}`} description={metaDescription} socialImage={socialImageUrl} >
|
||||||
<Sidebar />
|
<Sidebar />
|
||||||
<Page title={pageTitle}>
|
<Page title={pageTitle}>
|
||||||
<div dangerouslySetInnerHTML={{ __html: pageBody }} />
|
<div dangerouslySetInnerHTML={{ __html: pageBody }} />
|
||||||
@ -39,7 +40,9 @@ export const query = graphql`
|
|||||||
title
|
title
|
||||||
date
|
date
|
||||||
description
|
description
|
||||||
socialImage
|
socialImage {
|
||||||
|
publicURL
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -17,9 +17,10 @@ const PostTemplate = ({ data }: Props) => {
|
|||||||
const { frontmatter } = data.markdownRemark;
|
const { frontmatter } = data.markdownRemark;
|
||||||
const { title: postTitle, description: postDescription, socialImage } = frontmatter;
|
const { title: postTitle, description: postDescription, socialImage } = frontmatter;
|
||||||
const metaDescription = postDescription !== null ? postDescription : siteSubtitle;
|
const metaDescription = postDescription !== null ? postDescription : siteSubtitle;
|
||||||
|
const socialImageUrl = socialImage ? socialImage['publicURL'] : '';
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Layout title={`${postTitle} - ${siteTitle}`} description={metaDescription} socialImage={socialImage} >
|
<Layout title={`${postTitle} - ${siteTitle}`} description={metaDescription} socialImage={socialImageUrl} >
|
||||||
<Post post={data.markdownRemark} />
|
<Post post={data.markdownRemark} />
|
||||||
</Layout>
|
</Layout>
|
||||||
);
|
);
|
||||||
@ -39,7 +40,9 @@ export const query = graphql`
|
|||||||
description
|
description
|
||||||
tags
|
tags
|
||||||
title
|
title
|
||||||
socialImage
|
socialImage {
|
||||||
|
publicURL
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -26,7 +26,8 @@ export type Node = {
|
|||||||
fields: {
|
fields: {
|
||||||
slug: string,
|
slug: string,
|
||||||
categorySlug?: string,
|
categorySlug?: string,
|
||||||
tagSlugs?: string[]
|
tagSlugs?: string[],
|
||||||
|
socialImageUrl?: string,
|
||||||
},
|
},
|
||||||
frontmatter: {
|
frontmatter: {
|
||||||
date: string,
|
date: string,
|
||||||
|
Loading…
Reference in New Issue
Block a user