How to define a custom script in config.js so I can use Google Maps

Hi @eugene,

As google apis script is non-AMD script then use shim with exports config to specify the global ‘google.maps’ as module value

    deps: ['gmaps'],
    paths: {
       'gmaps': 'https://maps.googleapis.com/maps/api/js?'
    },
    shim: {
       'gmaps' : {exports: 'google.maps'}
    }

http://requirejs.org/docs/api.html#config-shim