nextjs-demo

next.js demo using react 19 rc

git clone https://9o.is/git/nextjs-demo.git

tailwind.config.ts

(520B)


      1 import type { Config } from "tailwindcss";
      2 
      3 const config: Config = {
      4   content: [
      5     "./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
      6     "./src/components/**/*.{js,ts,jsx,tsx,mdx}",
      7     "./src/app/**/*.{js,ts,jsx,tsx,mdx}",
      8   ],
      9   theme: {
     10     extend: {
     11       colors: {
     12         background: "var(--background)",
     13         foreground: "var(--foreground)",
     14       },
     15       fontFamily: {
     16         sans: ["var(--font-geist-sans)"],
     17         mono: ["var(--font-geist-mono)"],
     18       },
     19     },
     20   },
     21   plugins: [],
     22 };
     23 export default config;