wodax-umi-plugin-routes
v1.0.1
Published
routes modification plugin for umi.
Downloads
2
Readme
umi-plugin-routes
routes modification plugin for umi.
Suggest to use together with umi-plugin-react, see our website umi-plugin-react for more.
Usage
Install via yarn or npm.
$ yarn add umi-plugin-routes
Configure it in the .umirc.js
.
export default {
plugins: [
['umi-plugin-routes', option],
],
};
Option
option.exclude
type: Array(RegExp|Function)
e.g.
{
exclude: [
// exclude all the `models` directory
/models\//,
// exclude ./pages/a.js
(route) { return route.component === './pages/a.js' },
],
}
option.update
type: Function
e.g.
{
update(routes) {
return [
{ path: '/foo', component: './bar.js' },
...routes,
];
}
}