/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
examples/prisma-postgres/tailwind.config.ts
18 строк
381 B
Ankur Datta
Add Prisma ORM example to Next.js examples (#75290)
15 июл 2025, 18:48
Не верифицирован
15 июл 2025, 18:48
92a9d28
Код
Авторство
О чём код?
import type { Config } from "tailwindcss"; export default { content: [ "./pages/**/*.{js,ts,jsx,tsx,mdx}", "./components/**/*.{js,ts,jsx,tsx,mdx}", "./app/**/*.{js,ts,jsx,tsx,mdx}", ], theme: { extend: { colors: { background: "var(--background)", foreground: "var(--foreground)", }, }, }, plugins: [], } satisfies Config;