mirror of
https://github.com/sergi0g/cup.git
synced 2025-11-08 13:13:49 -05:00
18 lines
272 B
JavaScript
18 lines
272 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"src/static/template.liquid"
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
safelist: [
|
|
{
|
|
pattern: /(bg|text|divide)-(gray|neutral)-.+/,
|
|
variants: ["dark"]
|
|
}
|
|
]
|
|
}
|
|
|