first commit

This commit is contained in:
2025-03-07 00:29:07 -06:00
commit b21a11c2ee
564 changed files with 94041 additions and 0 deletions

View File

@ -0,0 +1,16 @@
import SwalPlugin from 'sweetalert2/dist/sweetalert2';
const Swal = SwalPlugin.mixin({
buttonsStyling: false,
customClass: {
confirmButton: 'btn btn-primary',
cancelButton: 'btn btn-label-danger',
denyButton: 'btn btn-label-secondary'
}
});
try {
window.Swal = Swal;
} catch (e) {}
export { Swal };