7 lines
234 B
TypeScript
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);
|
|
}
|