Bootstrap5 support

This commit is contained in:
Micha
2025-02-21 16:57:59 +01:00
parent ce55af42ca
commit 94b34e6256
4 changed files with 301 additions and 0 deletions

11
test.js Normal file
View File

@@ -0,0 +1,11 @@
import $ from 'jquery';
window.jQuery = window.$ = $;
import 'bootstrap/dist/css/bootstrap.min.css';
import 'bootstrap';
$(document).ready(function () {
$('#testButton').click(function () {
alert('Bootstrap 3.4.1 and jQuery are working!');
});
});