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

30 lines
668 B
JavaScript
Raw Normal View History

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',
'gatsby-plugin-sri',
{
resolve: 'gatsby-plugin-plausible',
options: {
domain: 'notes.theorangeone.net',
2021-06-26 22:28:55 +01:00
customDomain: 'elbisualp.theorangeone.net'
}
}
2020-09-28 22:04:20 +01:00
],
}