We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/thanushri-10/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
tailwind.config.js•494 B
// apps/web/tailwind.config.js
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
// You can extend other things here if needed, like fonts,
// but colors are typically handled via CSS variables in v4.
fontFamily: {
mono: [
"Fira Code",
"Fira Mono",
"Menlo",
"monospace",
],
},
},
},
plugins: [],
}