stupid prismjs

This commit is contained in:
Xetera
2019-07-26 14:37:31 -07:00
parent 6982552205
commit 36f4e41e16
16 changed files with 2234 additions and 646 deletions
+23 -3
View File
@@ -1,11 +1,23 @@
module.exports = {
siteMetadata: {
title: `Gatsby Default Starter`,
description: `Kick off your next, great Gatsby project with this default starter. This barebones starter ships with the main Gatsby configuration files you might need.`,
author: `@gatsbyjs`,
title: `The Programmers Hangout`,
description: `A cozy community of programmers on Discord`,
author: `TPH Community`,
},
plugins: [
`gatsby-plugin-react-helmet`,
`gatsby-plugin-typescript`,
{
resolve: `gatsby-transformer-remark`,
plugins: [
{
resolve: `gatsby-remark-prismjs`,
options: {
classPrefix: ""
}
}
],
},
{
resolve: `gatsby-source-filesystem`,
options: {
@@ -13,8 +25,16 @@ module.exports = {
path: `${__dirname}/src/images`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `docs`,
path: `${__dirname}/src/content/docs`,
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
`gatsby-plugin-sass`,
{
resolve: `gatsby-plugin-manifest`,
options: {