mirror of
https://github.com/documenso/documenso
synced 2026-04-21 21:37:18 +00:00
- Fixed z-index when dragging pre-existing fields - Refactored document flow - Added button spinner - Added animation for document flow slider - Updated drag and drop fields - Updated document flow so it adjusts to the height of the PDF - Updated claim plan dialog
12 lines
294 B
JavaScript
12 lines
294 B
JavaScript
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
const baseConfig = require('@documenso/tailwind-config');
|
|
|
|
module.exports = {
|
|
...baseConfig,
|
|
content: [
|
|
...baseConfig.content,
|
|
'./primitives/**/*.{ts,tsx}',
|
|
'./components/**/*.{ts,tsx}',
|
|
'./lib/**/*.{ts,tsx}',
|
|
],
|
|
};
|