You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
homepage/src/widgets/calibreweb/widget.js

21 lines
363 B

import calibreWebProxyHandler from "./proxy";
const widget = {
api: "{url}/{endpoint}",
proxyHandler: calibreWebProxyHandler,
mappings: {
books: {
endpoint: "opds/books/letter/00",
},
authors: {
endpoint: "opds/author/letter/00",
},
series: {
endpoint: "opds/series/letter/00",
},
},
};
export default widget;