Wire production domain, CORS for tenant subdomains, celery volume mounts, and nginx reverse proxy configs for apex, API, identity, auth, and wildcard tenants. Co-authored-by: Cursor <cursoragent@cursor.com>
28 lines
688 B
TypeScript
28 lines
688 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
/**
|
|
* پیکربندی Tailwind با رویکرد White-label.
|
|
* رنگها به CSS Variables متصل هستند تا با تغییر theme.config.json
|
|
* برند بدون build مجدد قابل تغییر باشد.
|
|
*/
|
|
const config: Config = {
|
|
content: [
|
|
"./app/**/*.{ts,tsx}",
|
|
"./components/**/*.{ts,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['"Yekan Bakh FaNum"', "system-ui", "sans-serif"],
|
|
},
|
|
colors: {
|
|
primary: "var(--color-primary)",
|
|
secondary: "var(--color-secondary)",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|
|
export default config;
|