React/Next.js: override bootstrap theme
Nov 29, 2021
1. Define your colors in app.scss
$primary: #0099ff;
2. Import scss version of bootstrap (from node_modules)
@import '~bootstrap/scss/bootstrap';
3. Import the app.scss file in your main.js file
import './styles/app.scss';
Good luck !
Guillaume Duhan