blob: 73c6f75f17c8fc36764bccd0dced08100955caad [file] [log] [blame]
Akron4036d542018-02-12 13:17:09 +01001/**
2 * This file defines the development environment
3 * of the application.
4 */
5
6requirejs.config({
7 baseUrl: 'js/src',
8 paths : {
9 'lib': '../lib'
10 }
11});
12
13require(['app/en'], function (lang) {
14 // TODO: Define logging output!
15});