Commit d905b2e7 authored by Taylor Otwell's avatar Taylor Otwell

only load libraries if present

parent 17ec5c51
......@@ -7,9 +7,11 @@ window._ = require('lodash');
* code may be modified to fit the specific needs of your application.
*/
window.$ = window.jQuery = require('jquery');
try {
window.$ = window.jQuery = require('jquery');
require('bootstrap-sass');
require('bootstrap-sass');
} catch (e) {}
/**
* We'll load the axios HTTP library which allows us to easily issue requests
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment