mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-04 22:43:40 +01:00

* added xteve widget * eslint fixes * xteve code cleanup Co-authored-by: Marcus Kimpenhaus <k@AirM2.kimpenhaus.net> Co-authored-by: Michael Shamoon <4887959+shamoon@users.noreply.github.com>
15 lines
212 B
JavaScript
15 lines
212 B
JavaScript
import xteveProxyHandler from "./proxy";
|
|
|
|
const widget = {
|
|
api: "{url}/{endpoint}",
|
|
proxyHandler: xteveProxyHandler,
|
|
|
|
mappings: {
|
|
"api": {
|
|
endpoint: "api/",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default widget;
|