Greetings, Ilya. Here is my example for Yandex maps module. As you can see I define require.js config in module file.
requirejs.config({ paths: { 'ymaps': '//api-maps.yandex.ru/2.1/?lang=ru-RU', 'geolib': 'map/geolib.min' }, "shim": { 'ymaps': { exports: 'ymaps' }, 'geolib' : { exports: 'geolib' } } }); define(["jquery", "ymaps", "geolib","./lodash.min","./graham_scan.min"], function ($, ymaps,geolib) { code... }); Pavel Chernyak. 9 апр. 2016 г. 15:05 пользователь "Ilya Obshadko" <xf...@xfyre.com> написал: > Facebook recommends the following method to integrate FB SDK using AMD > approach: > https://developers.facebook.com/docs/javascript/howto/requirejs/v2.5 > > However I can't find any obvious way to configure RequireJS paths in > Tapestry. > > Is there any way to do it? > > -- > Ilya Obshadko >