23
loading...
This website collects cookies to deliver better user experience
npm install --save bootstrap react-bootstrap node-sass
$theme-colors: (
'primary': #145bea,
'secondary': #833bec,
'success': #1ce1ac,
'info': #ff7d50,
'warning': #ffbe0b,
'danger': #ff007f,
'light': #c0ccda,
'dark': #001738,
);
@import '/node_modules/bootstrap/scss/bootstrap.scss';
const path = require('path')
module.exports = {
...
sassOptions: {
includePaths: [path.join(__dirname, 'styles')],
},
}
import 'styles/scss/global.scss' // added
function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
}
export default MyApp