mirror of
https://github.com/docusealco/docuseal.git
synced 2026-06-22 20:00:30 +00:00
16 lines
482 B
JavaScript
16 lines
482 B
JavaScript
const baseConfigs = require('./tailwind.config.js')
|
|
|
|
module.exports = {
|
|
...baseConfigs,
|
|
content: [
|
|
'./app/javascript/submission_form/**/*.vue',
|
|
'./app/views/submit_form/**/*.erb',
|
|
'./app/views/start_form/**/*.erb',
|
|
'./app/views/shared/_html_modal.html.erb',
|
|
'./app/views/shared/_button_title.html.erb',
|
|
'./app/views/shared/_attribution.html.erb',
|
|
'./app/views/scripts/_autosize_field.html.erb',
|
|
'./app/views/send_submission_email/**/*.erb'
|
|
]
|
|
}
|