mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
12 lines
303 B
JavaScript
12 lines
303 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}`,
|
|
],
|
|
};
|