-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
30 lines (30 loc) · 932 Bytes
/
gatsby-config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.org/docs/gatsby-config/
*/
const path = require(`path`)
module.exports = {
/* Your site config here */
siteMetadata: {
title: "Neecoworld",
description: `Explore awesome worldwide tours & discover what makes each of them unique. Forget your daily routine & say yes to adventure.`,
author: "@johndoe",
siteUrl: "https://gatsby-backroads-project-recording.netlify.com", // No trailing slash allowed!
image: "/defaultBcg.jpeg", // Path to your image you placed in the 'static' folder
twitterUsername: "@john_smilga",
},
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: path.join(__dirname, `src`, `images`),
},
},
`gatsby-plugin-sass`,
`gatsby-plugin-transition-link`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`
],
}