21 lines
383 B
JavaScript
21 lines
383 B
JavaScript
/**
|
|
* Configure your Gatsby site with this file.
|
|
*
|
|
* See: https://www.gatsbyjs.org/docs/gatsby-config/
|
|
*/
|
|
|
|
module.exports = {
|
|
/* Your site config here */
|
|
plugins: [
|
|
`gatsby-plugin-sass`,
|
|
{
|
|
resolve: `gatsby-source-filesystem`,
|
|
options: {
|
|
name: `posts`,
|
|
path: `${__dirname}/src/posts`,
|
|
},
|
|
},
|
|
`gatsby-transformer-remark`
|
|
],
|
|
}
|