admin管理员组文章数量:1345310
I had a perfectly running Next 14.2.3 project which I had to downgrade to 14.1.4 due to an issue with agora-rtm-sdk. But after downgrading all my CSS has sort of vanished. Can someone please help me out on how to fix this.
This is my tailwind.config.ts file
import type { Config } from "tailwindcss";
import daisyui from "daisyui";
const config: Config = {
daisyui: {
themes: [
{
mytheme: {
primary: "#E84644",
secondary: "#111111",
"base-200": "#111111",
"base-100": "#292929",
success: "#24B833",
info: "#1E1E1E"
},
},
],
},
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/Components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
},
},
plugins: [daisyui],
};
export default config;
postcss.config.mjs file
/** @type {import('postcss-load-config').Config} */
const config = {
plugins: {
tailwindcss: {},
},
};
export default config;
globals.css file
@tailwind base;
@tailwind components;
@tailwind utilities;
the root layout.tsx file
import type { Metadata } from "next";
import { Poppins } from "next/font/google";
import "../globals.css";
import Navbar from "@/Components/Desktop/Navbar/Navbar";
const poppins = Poppins({
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Stranger Hub",
description: "Generated by create next app",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" data-theme="dark">
<body className={poppins.className}>
<Navbar />
{children}
</body>
</html>
);
}
本文标签: nextjsTailwind CSS not working with downgraded NextJSStack Overflow
版权声明:本文标题:next.js - Tailwind CSS not working with downgraded NextJS - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743755554a2533446.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论