main.js 416 B

12345678910111213141516171819
  1. require.config({
  2. paths: {
  3. jquery: '../bower_components/jquery/jquery',
  4. bootstrap: 'vendor/bootstrap'
  5. },
  6. shim: {
  7. bootstrap: {
  8. deps: ['jquery'],
  9. exports: 'jquery'
  10. }
  11. }
  12. });
  13. require(['app', 'jquery', 'bootstrap'], function (app, $) {
  14. 'use strict';
  15. // use app here
  16. console.log(app);
  17. console.log('Running jQuery %s', $().jquery);
  18. });