1const path = require(`path`)
2
3module.exports = {
4 plugins: [
5 {
6 resolve: `gatsby-source-filesystem`,
7 options: {
8 name: `images`,
9 path: path.join(__dirname, `src`, `images`),
10 },
11 },
12 `gatsby-plugin-sharp`,
13 `gatsby-transformer-sharp`,
14 ],
15}