mirror of
https://github.com/outline/outline.git
synced 2025-12-20 10:09:43 -06:00
17 lines
393 B
TypeScript
17 lines
393 B
TypeScript
import { createLazyComponent } from "~/components/LazyLoad";
|
|
import { Hook, PluginManager } from "~/utils/PluginManager";
|
|
import config from "../plugin.json";
|
|
import Icon from "./Icon";
|
|
|
|
PluginManager.add([
|
|
{
|
|
...config,
|
|
type: Hook.Settings,
|
|
value: {
|
|
group: "Integrations",
|
|
icon: Icon,
|
|
component: createLazyComponent(() => import("./Settings")),
|
|
},
|
|
},
|
|
]);
|