@luban-cli/cli-plugin-service
Version:
A development runtime environment dependency
25 lines (22 loc) • 349 B
text/typescript
/**
* DO NOT MOVE THIS FILE ELSEWHERE
*/
import { route } from "luban";
export default route({
routes: [
{
path: "/",
redirect: "/prev",
},
{
name: "Prev",
path: "/prev",
component: "@/pages/prev",
},
{
name: "Next",
path: "/next",
component: "@/pages/next",
},
],
});