mirror of
https://github.com/gethomepage/homepage.git
synced 2026-09-15 08:35:49 -07:00
15 lines
245 B
JavaScript
15 lines
245 B
JavaScript
import dockhandProxyHandler from "./proxy";
|
|
|
|
const widget = {
|
|
api: "{url}/api/{endpoint}",
|
|
proxyHandler: dockhandProxyHandler,
|
|
|
|
mappings: {
|
|
"dashboard/stats": {
|
|
endpoint: "dashboard/stats",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default widget;
|