mirror of
https://github.com/gethomepage/homepage.git
synced 2026-04-02 16:22:14 -07:00
Some checks are pending
Docker / Linting Checks (push) Waiting to run
Docker / Docker Build & Push (push) Blocked by required conditions
Docs / Linting Checks (push) Waiting to run
Docs / Test Build (push) Blocked by required conditions
Docs / Build & Deploy (push) Blocked by required conditions
15 lines
255 B
JavaScript
15 lines
255 B
JavaScript
import genericProxyHandler from "utils/proxy/handlers/generic";
|
|
|
|
const widget = {
|
|
api: "{url}/api/{endpoint}",
|
|
proxyHandler: genericProxyHandler,
|
|
|
|
mappings: {
|
|
vehicleinfo: {
|
|
endpoint: "vehicle/info",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default widget;
|