18 lines
285 B
JavaScript
18 lines
285 B
JavaScript
import linkwardenProxyHandler from "./proxy";
|
|
|
|
const widget = {
|
|
api: "{url}/api/v1/{endpoint}",
|
|
proxyHandler: linkwardenProxyHandler,
|
|
|
|
mappings: {
|
|
collections: {
|
|
endpoint: "collections",
|
|
},
|
|
tags: {
|
|
endpoint: "tags",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default widget;
|