Skip to content
Snippets Groups Projects
globals.js 205 B
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;