Add initial support for dynamic-components - loaded from a url - as custom widgets.

This commit is contained in:
2025-05-05 11:34:23 -05:00
parent b279a04b43
commit bb06e2743a
9 changed files with 564 additions and 10 deletions

View File

@ -58,4 +58,5 @@ module.exports = function (app)
app.use("/api*", getRequestHandler());
app.use("/*api", getRequestHandler());
app.use("/qqq/*", getRequestHandler());
app.use("/dynamic-qfmd-components/*", getRequestHandler());
};