mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
19 lines
855 B
TypeScript
19 lines
855 B
TypeScript
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
const baseConfig = require('@documenso/tailwind-config');
|
|
const path = require('path');
|
|
|
|
module.exports = {
|
|
...baseConfig,
|
|
content: [
|
|
...baseConfig.content,
|
|
'./app/**/*.{ts,tsx}',
|
|
`${path.join(require.resolve('@documenso/ui'), '..')}/components/**/*.{ts,tsx}`,
|
|
`${path.join(require.resolve('@documenso/ui'), '..')}/icons/**/*.{ts,tsx}`,
|
|
`${path.join(require.resolve('@documenso/ui'), '..')}/lib/**/*.{ts,tsx}`,
|
|
`${path.join(require.resolve('@documenso/ui'), '..')}/primitives/**/*.{ts,tsx}`,
|
|
`${path.join(require.resolve('@documenso/email'), '..')}/templates/**/*.{ts,tsx}`,
|
|
`${path.join(require.resolve('@documenso/email'), '..')}/template-components/**/*.{ts,tsx}`,
|
|
`${path.join(require.resolve('@documenso/email'), '..')}/providers/**/*.{ts,tsx}`,
|
|
],
|
|
};
|