mirror of
https://github.com/documenso/documenso.git
synced 2026-07-11 05:25:08 +10:00
25 lines
475 B
JavaScript
25 lines
475 B
JavaScript
const path = require('node:path');
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [path.join(__dirname, 'app/**/*.{ts,tsx}')],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: [
|
|
'Inter',
|
|
'ui-sans-serif',
|
|
'system-ui',
|
|
'-apple-system',
|
|
'Segoe UI',
|
|
'Roboto',
|
|
'Helvetica Neue',
|
|
'Arial',
|
|
'sans-serif',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|