1
mirror of https://github.com/RealOrangeOne/notes.git synced 2024-07-01 09:53:53 +01:00
notes/gatsby-config.js

22 lines
454 B
JavaScript

module.exports = {
siteMetadata: {
title: 'notes',
description: 'A description',
author: 'TheOrangeOne',
siteUrl: 'https://notes.theorangeone.net'
},
plugins: [
{
resolve: 'gatsby-theme-code-notes',
options: {
contentPath: 'notes',
basePath: '/',
showThemeInfo: false,
showDescriptionInSidebar: true,
},
},
'gatsby-plugin-robots-txt',
'gatsby-plugin-sitemap'
],
}