blob: 9b7a089c24f35b4b3e2d2325f23230df5786ecdf [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({
Akrona68559c2018-02-13 15:02:18 +01007 baseUrl: '/js/src',
Akron4036d542018-02-12 13:17:09 +01008 paths : {
9 'lib': '../lib'
10 }
11});
12
13require(['app/en'], function (lang) {
14 // TODO: Define logging output!
15});