From d1916afbda2f1129c1668fa5cdeee15f775dfa95 Mon Sep 17 00:00:00 2001 From: Aslam Date: Wed, 24 Jan 2024 18:45:53 +0700 Subject: [PATCH] Fix typo loadash to lodash --- resources/js/bootstrap.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/js/bootstrap.js b/resources/js/bootstrap.js index 7b526fa..a585603 100644 --- a/resources/js/bootstrap.js +++ b/resources/js/bootstrap.js @@ -1,4 +1,4 @@ -import loadash from 'lodash'; +import lodash from 'lodash'; import * as Popper from '@popperjs/core'; @@ -10,7 +10,7 @@ import * as Popper from '@popperjs/core'; import axios from 'axios'; -window._ = loadash; +window._ = lodash; window.Popper = Popper; window.axios = axios;