mirror of
https://github.com/outline/outline.git
synced 2026-05-04 16:50:11 -05:00
3d0160463c
* Update clientside plugin management to work as server * docs * tsc * Rebase main
12 lines
212 B
TypeScript
12 lines
212 B
TypeScript
import { Hook, PluginManager } from "~/utils/PluginManager";
|
|
import config from "../plugin.json";
|
|
import Icon from "./Icon";
|
|
|
|
PluginManager.add([
|
|
{
|
|
...config,
|
|
type: Hook.Icon,
|
|
value: Icon,
|
|
},
|
|
]);
|