mirror of
https://github.com/gregberge/loadable-components.git
synced 2026-01-18 15:12:26 +00:00
8 lines
173 B
JavaScript
8 lines
173 B
JavaScript
module.exports.createPages = ({ actions }) => {
|
|
actions.createRedirect({
|
|
fromPath: `/docs/`,
|
|
toPath: `/docs/getting-started/`,
|
|
redirectInBrowser: true,
|
|
})
|
|
}
|