react-static-pro-plugin-react-router
v0.2.0
Published
A React-Static plugin that adds react-router support for React Static
Downloads
5
Readme
react-static-plugin-react-router
A React-Static plugin that adds support for react-router
Installation
- Install this plugin and peer dependencies:
$ yarn add react-static-plugin-react-router react-router-dom react-router
Make sure that you have exactly the same version for react-router-dom
as react-router
, per this blog post.
- Add the plugin to your
static.config.js
:
export default {
plugins: ['react-static-plugin-react-router'],
}
Follow the Dynamic Routes with React Router guide to configure your routes for both dynamic and static rendering
(Optional) Configure the plugin:
export default {
plugins: [
[
'react-static-plugin-react-router',
{
RouterProps: {
// These props will be passed to the underlying `Router` component
},
},
],
],
}