import type { Config } from "tailwindcss"; import { nextui } from "@nextui-org/react"; const config: Config = { content: [ "./src/**/*.{js,ts,jsx,tsx,mdx}", "./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}", ], darkMode: "class", theme: { container: { center: true }, extend: { fontFamily: { primary: [ "var(--font-inter)", "system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif", ], }, }, }, plugins: [nextui()], }; export default config;