During Parcel compilation, this error occurs:
@parcel/core: Failed to resolve '../node_modules/bootstrap/scss/bootstrap'
My app.css file:
@import '../node_modules/bootstrap/scss/bootstrap.scss';
@import './styles/style.scss';
@import './styles/plugins/plugins.scss';
@import './styles/plugins/plugins.css';
@import './styles/loader.scss';
@import './styles/custom.css';
Why is Parcel not recognizing the correct bootstrap SCSS?