| 123456789101112131415161718192021222324252627282930313233343536 |
- import { IPlugin } from "..";
- const plugin: IPlugin = {
- routes: [
- {
- path: "/users/forgot-password",
- component: () => import("./users/forgot-password"),
- },
- {
- path: "/users/unlock",
- component: () => import("./users/unlock"),
- },
- {
- path: "/users/confirm",
- component: () => import("./users/confirm"),
- },
- {
- path: "/users/sign-in",
- component: () => import("./users/sign-in"),
- },
- {
- path: "/users/sign-up",
- component: () => import("./users/sign-up"),
- },
- {
- path: "/install",
- component: () => import("./install"),
- },
- {
- path: "/",
- component: () => import("./home"),
- },
- ],
- };
- export default plugin;
|