blob: d5f07f84b4b520add7a2c28070ac1eba61d101ab [file] [log] [blame]
Akron479994e2018-07-02 13:21:44 +02001requirejs.config({
2 baseUrl: '/js/src',
3 paths : {
4 'lib': '../lib'
5 }
6});
7
8define(['app/en','plugin/server','lib/domReady','init','hint/foundries/cnx'], function (lang, pluginClass, domReady) {
9 domReady(function () {
Akron8d646d72018-07-08 13:45:53 +020010 KorAP.Plugin = pluginClass.create();
Akron479994e2018-07-02 13:21:44 +020011 });
12});