aboutsummaryrefslogtreecommitdiffhomepage
path: root/gatsby-config.js
diff options
context:
space:
mode:
authorKevin J Hoerr <kjhoerr@protonmail.com>2021-04-21 23:09:59 -0400
committerKevin J Hoerr <kjhoerr@protonmail.com>2021-04-21 23:09:59 -0400
commit9bfb5ce80ce8b5c2e7821b7ebea28a5f35848135 (patch)
tree45eb2f86ad7c91dd2359d40881819e969ccd49cc /gatsby-config.js
downloadsubmelon.dev-9bfb5ce80ce8b5c2e7821b7ebea28a5f35848135.tar.gz
submelon.dev-9bfb5ce80ce8b5c2e7821b7ebea28a5f35848135.tar.bz2
submelon.dev-9bfb5ce80ce8b5c2e7821b7ebea28a5f35848135.zip
Initial commit from gatsby
Diffstat (limited to 'gatsby-config.js')
-rw-r--r--gatsby-config.js35
1 files changed, 35 insertions, 0 deletions
diff --git a/gatsby-config.js b/gatsby-config.js
new file mode 100644
index 0000000..8d57baf
--- /dev/null
+++ b/gatsby-config.js
@@ -0,0 +1,35 @@
+module.exports = {
+ siteMetadata: {
+ title: "submelon.tech",
+ },
+ plugins: [
+ "gatsby-plugin-styled-components",
+ "gatsby-plugin-image",
+ "gatsby-plugin-react-helmet",
+ {
+ resolve: "gatsby-plugin-manifest",
+ options: {
+ icon: "src/images/icon.png",
+ },
+ },
+ "gatsby-plugin-mdx",
+ "gatsby-plugin-sharp",
+ "gatsby-transformer-sharp",
+ {
+ resolve: "gatsby-source-filesystem",
+ options: {
+ name: "images",
+ path: "./src/images/",
+ },
+ __key: "images",
+ },
+ {
+ resolve: "gatsby-source-filesystem",
+ options: {
+ name: "pages",
+ path: "./src/pages/",
+ },
+ __key: "pages",
+ },
+ ],
+};