tauri/examples/react/gatsby-themed-site/gatsby-config.js
Jacob Bolda 8df78e29b6
slim down gatsby example, update deps (#193)
* shift example and slim config

removed gatsby-source-airtable and gatsby-theme-recipes to make things more simple, less fragile and speed up the build

* update action to point at new location

* update links

* add test articles

* add theme

* slim config, move to homepage folder

* update renovate path, enable automerge on examples

* turn off rebases, but keep on for examples
2019-12-21 00:34:36 -06:00

49 lines
1.2 KiB
JavaScript

module.exports = {
siteMetadata: {
siteTitle: `Gatsby Themed Site In Tauri`,
siteDescription: `This is a smoke test to see that a (themed) Gatsbyjs site will work within Tauri.`,
siteAuthor: `Jacob Bolda`,
siteContact: "https://twitter.com/jacobbolda",
contactLinks: [
{
url: "https://twitter.com/jacobbolda",
text: "@jacobbolda",
icon: ["fab", "twitter"]
},
{
url: "https://twitter.com/TauriApps",
text: "@TauriApps",
icon: ["fab", "twitter"]
}
],
navLinks: [{ text: "Articles", url: "/articles/" }]
},
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
name: `articles`,
path: `${__dirname}/src/articles/`
}
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `homepage`,
path: `${__dirname}/src/homepage/`
}
},
`gatsby-plugin-theme-ui`,
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
`@jbolda/gatsby-theme-homepage`,
`@jbolda/gatsby-theme-articles`,
{
resolve: `gatsby-plugin-mdx`,
options: {}
},
`gatsby-plugin-react-helmet`,
`gatsby-plugin-netlify`
]
};