module.exports = { plugins: [`gatsby-plugin-layout`], }If you prefer to keep layout in different place, you can use component option:module.exports = { plugins: [ { resolve: `gatsby-plugin-layout`, options: { component: require.resolve(`./relative/path/to/layout/component`), }, }, ...