From 1f7194efbc094be1ad21c3bca2a1da6d6cfbef90 Mon Sep 17 00:00:00 2001 From: Utwo Date: Wed, 16 Mar 2022 21:56:23 +0200 Subject: [PATCH] Looks like without this is not working. I don't know if we need to keep bootstrap in extract then --- resources/js/bootstrap.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/resources/js/bootstrap.js b/resources/js/bootstrap.js index 40c22db6..5bb7896d 100644 --- a/resources/js/bootstrap.js +++ b/resources/js/bootstrap.js @@ -6,9 +6,8 @@ window._ = require("lodash"); * code may be modified to fit the specific needs of your application. */ -try { - window.$ = window.jQuery = require("jquery"); -} catch (e) {} +window.$ = window.jQuery = require("jquery"); +require("bootstrap"); /** * We'll load the axios HTTP library which allows us to easily issue requests