This commit is contained in:
syuilo 2017-12-17 04:31:24 +09:00
parent 11842366bc
commit 74f3a6aadb
9 changed files with 11 additions and 13 deletions

View file

@ -3,6 +3,7 @@ import * as glob from 'glob';
import * as yaml from 'js-yaml';
import langs from '../../../locales';
import config from '../../conf';
const constants = require('../../const.json');
export default function(): { [key: string]: any } {
const vars = {} as { [key: string]: any };
@ -38,5 +39,7 @@ export default function(): { [key: string]: any } {
vars['i18n'] = langs;
vars['copyright'] = constants.copyright;
return vars;
}