Import Bootstrap Webpack example to start off

This commit is contained in:
Dejvino
2023-05-23 09:11:23 +02:00
parent e8cc242408
commit 36c72b4ba1
9 changed files with 4792 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
// Import our custom CSS
import '../scss/styles.scss';
// Import only the Bootstrap components we need
import { Popover } from 'bootstrap';
// Create an example popover
document.querySelectorAll('[data-bs-toggle="popover"]')
.forEach(popover => {
new Popover(popover)
})