{"library":"gatsby-plugin-meta-redirect","install":[{"cmd":"npm install gatsby-plugin-meta-redirect","imports":["// in gatsby-config.js\nplugins: [\n  // other plugins...\n  `gatsby-plugin-meta-redirect` // must be last\n];","// in gatsby-node.js\nexports.createPages = async ({ actions }) => {\n  const { createRedirect } = actions;\n  createRedirect({\n    fromPath: '/old-url/',\n    toPath: '/new-url/',\n    isPermanent: true,\n    redirectInBrowser: true\n  });\n  // ... other createPage calls\n};"]},{"cmd":"yarn add gatsby-plugin-meta-redirect","imports":[]},{"cmd":"pnpm add gatsby-plugin-meta-redirect","imports":[]}]}