1
mirror of https://github.com/RealOrangeOne/notes.git synced 2024-06-29 06:56:59 +01:00
notes/gatsby-config.js

30 lines
673 B
JavaScript
Raw Normal View History

2020-09-28 22:04:20 +01:00
module.exports = {
siteMetadata: {
2022-09-09 17:11:51 +01:00
title: "Notes",
description: "Notes and snippets and things",
author: "TheOrangeOne",
siteUrl: "https://notes.theorangeone.net",
2020-09-28 22:04:20 +01:00
},
plugins: [
{
2022-09-09 17:11:51 +01:00
resolve: "gatsby-theme-code-notes",
2020-09-28 22:04:20 +01:00
options: {
2022-09-09 17:11:51 +01:00
contentPath: "notes",
basePath: "/",
2020-09-30 17:03:00 +01:00
showThemeInfo: false,
2020-09-28 22:04:20 +01:00
showDescriptionInSidebar: true,
},
},
2022-09-09 17:11:51 +01:00
"gatsby-plugin-robots-txt",
"gatsby-plugin-sitemap",
"gatsby-plugin-sri",
{
2022-09-09 17:11:51 +01:00
resolve: "gatsby-plugin-plausible",
options: {
2022-09-09 17:11:51 +01:00
domain: "notes.theorangeone.net",
customDomain: "elbisualp.theorangeone.net",
},
},
2020-09-28 22:04:20 +01:00
],
2022-09-09 17:11:51 +01:00
};