Akron | 4036d54 | 2018-02-12 13:17:09 +0100 | [diff] [blame] | 1 | /** |
| 2 | * This file defines the development environment |
| 3 | * of the application. |
| 4 | */ |
| 5 | |
| 6 | requirejs.config({ |
Akron | a68559c | 2018-02-13 15:02:18 +0100 | [diff] [blame] | 7 | baseUrl: '/js/src', |
Akron | 4036d54 | 2018-02-12 13:17:09 +0100 | [diff] [blame] | 8 | paths : { |
| 9 | 'lib': '../lib' |
| 10 | } |
| 11 | }); |
| 12 | |
Akron | 6429275 | 2018-02-15 11:13:24 +0100 | [diff] [blame] | 13 | require(['app/en', 'default'], function (lang) { |
Akron | 4036d54 | 2018-02-12 13:17:09 +0100 | [diff] [blame] | 14 | // TODO: Define logging output! |
| 15 | }); |