Я просто не могу заставить его работать, пограничные классы переопределяются чем -то и не могут понять, какие -либо идеи?postcss.config.js
const config = {
plugins: {
'@tailwindcss/postcss': {},
},
};
export default config;
< /code>
app/layout.tsx
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Next.js Calculator",
description: "A simple Next.js calculator",
};
export default function RootLayout({
children,
}: Readonly) {
return (
{children}
);
}
< /code>
app/global.css
@import "tailwindcss";
< /code>
app/page.tsx
export default function Home() {
return (
);
}
Подробнее здесь: https://stackoverflow.com/questions/795 ... next-js-15