mirror of
https://github.com/Dokploy/website
synced 2025-06-26 18:16:01 +00:00
22 lines
485 B
JavaScript
22 lines
485 B
JavaScript
import { createPreset } from "fumadocs-ui/tailwind-plugin";
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./components/**/*.{ts,tsx}",
|
|
"./app/**/*.{ts,tsx}",
|
|
"./content/**/*.{md,mdx}",
|
|
"./mdx-components.{ts,tsx}",
|
|
"./node_modules/fumadocs-ui/dist/**/*.js",
|
|
"./node_modules/fumadocs-openapi/dist/**/*.js",
|
|
],
|
|
darkMode: "class",
|
|
presets: [
|
|
createPreset({
|
|
// preset: 'neutral',
|
|
layoutWidth: 1400,
|
|
addGlobalColors: true,
|
|
}),
|
|
],
|
|
};
|