Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I use React Bootstrap with Next.js?

Tags:

Does anyone know if you can use react-bootstrap with Next.js? I am using the latest versions of both, I can provide code at this point, but right now my app is not throwing any errors, it is just not registering any of my react-bootstrap components. Maybe there is some trick that I have not been able to find on the internet? I can provide code or file structure if that helps. Thanks in advance!

next.config.js

const withCSS = require('@zeit/next-css')  module.exports = withCSS({     /* my next config */ }) 

pages/index.js

import Badge from 'react-bootstrap/Badge'; import "../public/css/bootstrap.css"; const Index = () => (     <div>         <p className='display-4'>Hello</p>         <Badge>Heading</Badge>     </div> )  export default Index; 

package.json

{   "name": "vacation-app",   "version": "1.0.0",   "description": "",   "main": "index.js",   "scripts": {     "dev": "next",     "build": "next build",     "start": "next start"   },   "keywords": [],   "author": "",   "license": "ISC",   "dependencies": {     "@zeit/next-css": "^1.0.1",     "next": "^9.1.1",     "react": "^16.10.2",     "react-bootstrap": "^1.0.0-beta.14",     "react-dom": "^16.10.2"   } } 
like image 825
austinw Avatar asked Oct 22 '19 02:10

austinw


People also ask

Can you use React bootstrap in NextJS?

You can alternatively create these Bootstrap components as custom React components and then import them into your pages using Next. js's dynamic import feature while disabling SSR. With the Next. js dynamic import feature, we are able to import components dynamically and work with them.

Can you use NextJS and React together?

Next. js is a widely-used framework for building React applications that offer server-side rendering, automatic code-splitting, static exporting options, and easy production builds. It also relieves a lot of the general headaches involved with creating production-ready React applications.

How does bootstrap connect to NextJS?

You copy the bootstrap CDN file and paste CDN links into the next js custom pages/_app. js app. In the Custom app, firstly, import the Head component in next. js.


1 Answers

It is obviously possible to use react-bootstrap in a nextjs application.

The only problem you might encounter will be in the rendering of your application if javascript is disabled in user's browser if you use react-bootstrap components to build your layout (see example below).

Nextjs allows you to display SSG/SSR pages, javascript-disabled users will see your app but the layout will be messy.

But if you still want to go with it:

npm i react-bootstrap bootstrap 

Import bootstrap styles in your _app.js:

import 'bootstrap/dist/css/bootstrap.min.css'; 

You can then use your react-bootstrap components as you would do in reactjs:

import {Container, Row, Col} from 'react-bootstrap';          const Layout = () => (   <>     <Container fluid>       <Row>         <Col>           <p>Yay, it's fluid!</p>         </Col>       </Row>     </Container>   </> );          export default Layout; 
like image 110
egdavid Avatar answered Oct 16 '22 00:10

egdavid