skip to Main Content

Tailwind background image not showing – CSS

The background image is not showing. I also tried "bg-[url('/image/example.jpeg')" tailwind.config.js theme: { extend: { colors: { darkBlue: "#0D1A32", }, backgroundImage: { "hero-image": "url('/app/images/lentcm93p_1.jpg')", }, }, }, plugins: [], }; Page.js export default function Home() { return ( <> <div…

VIEW QUESTION

Mongodb – Import Mongoose lib in api directory in Next js 13.2 app directory gives error

In hello.js import connectMongo from '../../../util/connectDB'; import UserModel from '../../../models/UserModel'; import { NextResponse } from 'next/server' export async function GET(request) { return NextResponse.json({hello: 'Hello, Next.js!'}) } export async function POST(request) { const data = await request.json(); console.log(data); return NextResponse.json(data) }…

VIEW QUESTION
Back To Top
Search