Files
CSC496GatsbySite/gatsby-config.js

20 lines
438 B
JavaScript

module.exports = {
pathPrefix: '/CSC496GatsbySite',
siteMetadata: {
title: `My First Gatsby Site`,
siteUrl: `https://www.yourdomain.tld`,
},
plugins: [
"gatsby-plugin-image",
"gatsby-plugin-sharp",
"gatsby-plugin-mdx",
{
resolve: "gatsby-source-filesystem",
options: {
name: `blog`,
path: `${__dirname}/blog`
}
},
],
}