Как реализовать в Gatsby одно перенаправление с /foobar/
на внешний URL http://example.com/page/
?
С Gatsby 2.20.6
этот код не работает:
// gatsby-node.js
...
exports.createPages = ({ actions }) => {
const { createRedirect } = actions;
createRedirect({
fromPath: '/foobar/',
isPermanent: true,
redirectInBrowser: true,
toPath: 'http://example.com'
});
});