/ gatsby-node.js
gatsby-node.js
1  exports.onCreatePage = ({ page, actions }) => {
2    const { createPage } = actions;
3  
4    if (page.path.match(/sign|reset|coming/)) {
5      page.context.layout = "bare";
6      createPage(page);
7    }
8  };