2023-06-09 18:21:18 +10:00
|
|
|
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
|
|
|
const baseConfig = require('@documenso/tailwind-config');
|
|
|
|
|
const path = require('path');
|
2022-12-06 18:49:38 +01:00
|
|
|
|
2022-12-06 14:51:03 +01:00
|
|
|
module.exports = {
|
2023-06-09 18:21:18 +10:00
|
|
|
...baseConfig,
|
2022-12-06 14:51:03 +01:00
|
|
|
content: [
|
2023-06-09 18:21:18 +10:00
|
|
|
...baseConfig.content,
|
2025-01-02 15:33:37 +11:00
|
|
|
'./app/**/*.{ts,tsx}',
|
2024-12-11 13:52:34 +11:00
|
|
|
`${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}`,
|
2022-12-06 14:51:03 +01:00
|
|
|
],
|
|
|
|
|
};
|