mirror of
https://github.com/documenso/documenso.git
synced 2025-11-22 20:51:33 +10:00
22 lines
582 B
JavaScript
22 lines
582 B
JavaScript
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
const baseConfig = require('@documenso/tailwind-config');
|
|
const path = require('path');
|
|
|
|
module.exports = {
|
|
...baseConfig,
|
|
content: [
|
|
...baseConfig.content,
|
|
`${path.join(require.resolve('@documenso/ui'), '..')}/**/*.{ts,tsx}`,
|
|
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./content/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
],
|
|
theme: {
|
|
fontFamily: {
|
|
sans: ['Inter', 'sans-serif'],
|
|
serif: ['Caveat', 'cursive'],
|
|
},
|
|
},
|
|
};
|