Skip to content
Snippets Groups Projects
globals.js 205 B
Newer Older
  • Learn to ignore specific revisions
  • import jQuery from './vendor/jquery';
    
    // We have to manually make jQuery a global variable.
    // By default it will be in a closure and renamed to lowercase.
    window.jQuery = jQuery;
    
    export default jQuery;