12 lines
245 B
JavaScript
12 lines
245 B
JavaScript
|
|
/** @type {import('tailwindcss').Config} */
|
||
|
|
module.exports = {
|
||
|
|
content: [
|
||
|
|
'./web/modules/custom/riverside_pt/templates/**/*.twig',
|
||
|
|
'./web/modules/custom/riverside_pt/src/**/*.php',
|
||
|
|
],
|
||
|
|
theme: {
|
||
|
|
extend: {},
|
||
|
|
},
|
||
|
|
plugins: [],
|
||
|
|
}
|