aboutsummaryrefslogtreecommitdiff
path: root/tools/utils/template-locals.ts
blob: be6b6690761965006f17075e9b97f68266915355 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import {APP_BASE, APP_DEST, APP_ROOT, APP_TITLE, SYSTEM_CONFIG, VERSION} from '../config';

// TODO: Add an interface to register more template locals.
export function templateLocals() {
  return {
    APP_BASE,
    APP_DEST,
    APP_ROOT,
    APP_TITLE,
    SYSTEM_CONFIG,
    VERSION
  };
}