Browse Source

Initialize main.js and main.scss files with necessary imports for jQuery, Bootstrap, and Toastr

node16
Onja 12 months ago
parent
commit
ce0e0d51a0
  1. 3
      src/assets/js/main.js
  2. 5
      src/assets/sass/main.scss

3
src/assets/js/main.js

@ -0,0 +1,3 @@
import $ from 'jquery';
import 'bootstrap';
import toastr from 'toastr';

5
src/assets/sass/main.scss

@ -0,0 +1,5 @@
@import "bootstrap";
@import "toastr";
Loading…
Cancel
Save