mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-22 18:00:06 +01:00
54 lines
1.1 KiB
TypeScript
54 lines
1.1 KiB
TypeScript
import path from 'path'
|
|
|
|
export default [
|
|
{
|
|
resolve: 'gatsby-source-filesystem',
|
|
options: {
|
|
name: 'articles',
|
|
path: path.join(__dirname, '..', 'content', 'articles')
|
|
}
|
|
},
|
|
{
|
|
resolve: 'gatsby-source-filesystem',
|
|
options: {
|
|
name: 'photos',
|
|
path: path.join(__dirname, '..', 'content', 'photos')
|
|
}
|
|
},
|
|
{
|
|
resolve: 'gatsby-source-filesystem',
|
|
options: {
|
|
name: 'links',
|
|
path: path.join(__dirname, '..', 'content', 'links')
|
|
}
|
|
},
|
|
{
|
|
resolve: 'gatsby-source-filesystem',
|
|
options: {
|
|
name: 'media',
|
|
path: path.join(__dirname, '..', 'content', 'media')
|
|
}
|
|
},
|
|
{
|
|
resolve: 'gatsby-source-filesystem',
|
|
options: {
|
|
name: 'images',
|
|
path: path.join(__dirname, '..', 'src', 'images')
|
|
}
|
|
},
|
|
{
|
|
resolve: 'gatsby-source-graphql',
|
|
options: {
|
|
typeName: 'GitHub',
|
|
fieldName: 'github',
|
|
url: 'https://api.github.com/graphql',
|
|
headers: {
|
|
Authorization: `Bearer ${process.env.GITHUB_TOKEN}`
|
|
}
|
|
// Additional options to pass to node-fetch
|
|
// fetchOptions: {},
|
|
// refetchInterval: 300 // 5 min.
|
|
}
|
|
}
|
|
]
|