From ce0e0d51a086e7ad37ec9f6793fc1a95db353134 Mon Sep 17 00:00:00 2001 From: Onja Date: Tue, 10 Oct 2023 22:37:34 +0300 Subject: [PATCH] Initialize main.js and main.scss files with necessary imports for jQuery, Bootstrap, and Toastr --- src/assets/js/main.js | 3 +++ src/assets/sass/main.scss | 5 +++++ 2 files changed, 8 insertions(+) create mode 100644 src/assets/js/main.js create mode 100644 src/assets/sass/main.scss diff --git a/src/assets/js/main.js b/src/assets/js/main.js new file mode 100644 index 0000000..629adb2 --- /dev/null +++ b/src/assets/js/main.js @@ -0,0 +1,3 @@ +import $ from 'jquery'; +import 'bootstrap'; +import toastr from 'toastr'; diff --git a/src/assets/sass/main.scss b/src/assets/sass/main.scss new file mode 100644 index 0000000..80a722d --- /dev/null +++ b/src/assets/sass/main.scss @@ -0,0 +1,5 @@ + +@import "bootstrap"; +@import "toastr"; + +