I try to get the baseUrl configuration of Require.js inside a module, but I can\'t find where it is stored.
baseUrl
define([], function() { // Here I\
In RequireJS 2.1.5, you can get the base URL just like epascarello says, except you'll need to pass the empty string.
var baseURL = require.toUrl('');