I'm just finish install bootstrap 5 version ^5.0.0-alpha1 and import bootstrap in app.js
import "bootstrap"
other.js
var myModal = new bootstrap.Modal(document.getElementById('myModal'));
myModal.show();
when I run the code it give me error ReferenceError: bootstrap is not defined.
then I try to import bootstrap in other.js like this
import bootstrap from "bootstrap"
but when I run npm run dev error "export 'default' (imported as 'bootstrap') was not found in 'bootstrap'
If Im import modal manually like import { Modal } from "bootstrap" it give me error "TypeError: Illegal invocation"