Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Failed to resolve 'node_modules/bootstrap/scss/bootstrap'

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?

like image 246
James Gentes Avatar asked Mar 28 '26 06:03

James Gentes


1 Answers

I can't explain why this works, but creating a separate file fixes the problem:

@import './styles/bootstrap.scss';

Then in bootstrap.scss:

@import 'node_modules/bootstrap/scss/bootstrap.scss';
like image 184
James Gentes Avatar answered Mar 31 '26 08:03

James Gentes