mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
383 B
14 lines
383 B
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/_button_title.html.erb',
|
|
'./app/views/shared/_attribution.html.erb',
|
|
'./app/views/send_submission_email/**/*.erb'
|
|
]
|
|
}
|