Skip to content

Files

Latest commit

8661f93 · Feb 20, 2021

History

History
This branch is 23 commits behind react-static/react-static:master.

react-static-plugin-react-router

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'],
}
export default {
  plugins: [
    [
      'react-static-plugin-react-router',
      {
        RouterProps: {
          // These props will be passed to the underlying `Router` component
        },
      },
    ],
  ],
}