discourse-docs/assets/javascripts/discourse/docs-route-map.js

10 lines
213 B
JavaScript

import { getDocs } from "../lib/get-docs";
export default function () {
const docsPath = getDocs();
this.route("docs", { path: "/" + docsPath }, function () {
this.route("index", { path: "/" });
});
}