During Parcel compilation, this error occurs:
Cannot create property 'importer' on string 'scss/bootstrap.scss'
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?