mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-24 11:14:40 +03:00
8df78e29b6
* 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
49 lines
1.2 KiB
JavaScript
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`
|
|
]
|
|
};
|