1
mirror of https://github.com/RealOrangeOne/notes.git synced 2024-07-01 09:53:53 +01:00
notes/gatsby-config.js
Jake Howard 6034e292ae
Add plausible
It doesn't work due to an upstream issue, but it'll start working soon
2020-10-01 19:21:34 +01:00

30 lines
668 B
JavaScript

module.exports = {
siteMetadata: {
title: 'Notes',
description: 'Notes and snippets and things',
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',
'gatsby-plugin-sri',
{
resolve: 'gatsby-plugin-plausible',
options: {
domain: 'notes.theorangeone.net',
customDomain: 'plausible.theorangeone.net'
}
}
],
}