2020-09-28 22:04:20 +01:00
|
|
|
module.exports = {
|
|
|
|
siteMetadata: {
|
2020-10-01 19:06:18 +01:00
|
|
|
title: 'Notes',
|
|
|
|
description: 'Notes and snippets and things',
|
2020-09-28 22:04:20 +01:00
|
|
|
author: 'TheOrangeOne',
|
2020-09-30 17:03:00 +01:00
|
|
|
siteUrl: 'https://notes.theorangeone.net'
|
2020-09-28 22:04:20 +01:00
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
{
|
|
|
|
resolve: 'gatsby-theme-code-notes',
|
|
|
|
options: {
|
|
|
|
contentPath: 'notes',
|
|
|
|
basePath: '/',
|
2020-09-30 17:03:00 +01:00
|
|
|
showThemeInfo: false,
|
2020-09-28 22:04:20 +01:00
|
|
|
showDescriptionInSidebar: true,
|
|
|
|
},
|
|
|
|
},
|
2020-09-30 17:03:00 +01:00
|
|
|
'gatsby-plugin-robots-txt',
|
2020-09-30 17:25:14 +01:00
|
|
|
'gatsby-plugin-sitemap',
|
2020-10-01 19:21:34 +01:00
|
|
|
'gatsby-plugin-sri',
|
|
|
|
{
|
|
|
|
resolve: 'gatsby-plugin-plausible',
|
|
|
|
options: {
|
|
|
|
domain: 'notes.theorangeone.net',
|
|
|
|
customDomain: 'plausible.theorangeone.net'
|
|
|
|
}
|
|
|
|
}
|
2020-09-28 22:04:20 +01:00
|
|
|
],
|
|
|
|
}
|