blob: ffaa01e95e2eb79ff4dcc5f3e964ec8f80a59c7e [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
Akron64292752018-02-15 11:13:24 +010013require(['app/en', 'default'], function (lang) {
Akron4036d542018-02-12 13:17:09 +010014 // TODO: Define logging output!
15});