mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-24 22:55:19 +01:00
16 lines
339 B
JavaScript
16 lines
339 B
JavaScript
import credentialedProxyHandler from "utils/proxy/handlers/credentialed";
|
|
|
|
const widget = {
|
|
api: "https://api.nextdns.io/profiles/{profile}/{endpoint}",
|
|
proxyHandler: credentialedProxyHandler,
|
|
|
|
mappings: {
|
|
"analytics/status": {
|
|
endpoint: "analytics/status",
|
|
validate: ["data"],
|
|
},
|
|
},
|
|
};
|
|
|
|
export default widget;
|