aboutsummaryrefslogtreecommitdiffhomepage
path: root/gatsby-config.js
diff options
context:
space:
mode:
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",
+ },
+ ],
+};