rebuild with gatsby

This commit is contained in:
2022-10-24 02:55:16 +08:00
parent 7defcb61a2
commit f26a62925a
46 changed files with 26630 additions and 0 deletions

18
gatsby-config.js Normal file
View File

@@ -0,0 +1,18 @@
module.exports = {
siteMetadata: {
title: `Social OjO`,
siteUrl: `https://www.yourdomain.tld`
},
plugins: [
{
resolve: 'gatsby-source-filesystem',
options: {
name: `pages`,
path: `${__dirname}/src`,
},
},
"gatsby-plugin-image",
"gatsby-plugin-sharp",
"gatsby-transformer-sharp",
]
};