#nextjs
Read more stories on Hashnode
Articles with this tag
🛠️ Topics Covered: - Setting up a ReactJS project in Visual Studio Code - Integrating a No Code API backend for data storage - Building dynamic...
/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, images: { remotePatterns: [ { protocol:...
To use JWT token in Next.js, you can follow these steps: Install the jsonwebtoken package by running the following command in your project...
To load getStaticProps in Next.js with dynamic pagination and avoid overloading the server, you can implement server-side pagination and use...
Set Header with Authorization Bearer token import axios from 'axios'; axios.defaults.baseURL = 'http://localhost:1010/' axios.defaults.headers.common...
npx create-next-app chat-app Setup websocket npm install socket.io create > socket.io file in > pages/api/ // socket.js import { Server } from...