Skip to content

Commit

Permalink
fix(www): gatsby config
Browse files Browse the repository at this point in the history
  • Loading branch information
daiyanze committed Apr 12, 2022
1 parent 2b65adb commit 4cf2ee7
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions packages/www/gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ module.exports = {
siteMetadata: {
title: `Pitayan Blog`,
name: `Pitayan`,
description: "Pitayan blog is a place publishing contents about web development! All articles are free to read and share.",
description:
"Pitayan blog is a place publishing contents about web development! All articles are free to read and share.",
siteUrl: `https://pitayan.com`,
siteSlogan: `Welcome to Pitayan, come find inspiring software development stories.`,
siteLinks: [
Expand Down Expand Up @@ -156,20 +157,19 @@ module.exports = {
mailChimpEndpoint:
"https://pitayanblog.us14.list-manage.com/subscribe/post?u=234bf6777b76872feb7d92a68&id=27fad95f3b",
mailChimpTimeout: 3500,
applyGatsbyRemarkPlugins: (defaultPlugins) =>
[
{
resolve: `@raae/gatsby-remark-oembed`,
options: {
usePrefix: ["oembed"],
providers: {
exclude: ["Redit"],
},
applyGatsbyRemarkPlugins: defaultPlugins => [
{
resolve: `@raae/gatsby-remark-oembed`,
options: {
usePrefix: ["oembed"],
providers: {
exclude: ["Redit"],
},
},
`gatsby-remark-responsive-iframe`,
...defaultPlugins
],
},
`gatsby-remark-responsive-iframe`,
...defaultPlugins,
],
},
},
],
Expand Down

0 comments on commit 4cf2ee7

Please sign in to comment.