mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-01 19:26:30 +02:00
15 lines
533 B
JavaScript
15 lines
533 B
JavaScript
const defaultTheme = require("tailwindcss/defaultTheme");
|
|
const sharedConfig = require("@rallly/tailwind-config/tailwind.config");
|
|
|
|
module.exports = {
|
|
...sharedConfig,
|
|
content: ["./src/pages/**/*.{ts,tsx}", "./src/components/**/*.{ts,tsx}"],
|
|
theme: {
|
|
...sharedConfig.theme,
|
|
fontFamily: {
|
|
sans: ["var(--font-inter)", ...defaultTheme.fontFamily.sans],
|
|
mono: ["var(--font-noto)", ...defaultTheme.fontFamily.mono],
|
|
},
|
|
},
|
|
plugins: [require("@tailwindcss/typography"), require("tailwindcss-animate")],
|
|
};
|