I am currently learning RequireJS fundamentals and have some questions regarding a build profile, main files, and use of RequireJS with multi-page projects.
My proje
// file: js/main require(['./global.config'], function(){ require(['./view/home'], function() { // do something }); });
This is what I used in my project.