mirror of
https://github.com/RealOrangeOne/notes.git
synced 2024-11-16 21:59:03 +00:00
29 lines
673 B
JavaScript
29 lines
673 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: "elbisualp.theorangeone.net",
|
|
},
|
|
},
|
|
],
|
|
};
|