foundry-factory-demo-gitlab/src/module/preloadTemplates.ts
2022-02-14 20:22:17 +01:00

7 lines
234 B
TypeScript

export async function preloadTemplates(): Promise<Handlebars.TemplateDelegate[]> {
const templatePaths: string[] = [
// Add paths to "modules/foundry-factory-demo-gitlab/templates"
];
return loadTemplates(templatePaths);
}