mirror of
https://codeberg.org/SafeTwitch/safetwitch.git
synced 2024-12-22 05:12:57 -05:00
15 lines
246 B
JavaScript
15 lines
246 B
JavaScript
|
module.exports = {
|
||
|
content: [
|
||
|
"./index.html",
|
||
|
"./src/**/*.{js,ts,jsx,tsx,vue}",
|
||
|
],
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [
|
||
|
require('@catppuccin/tailwindcss')({
|
||
|
prefix: 'ctp',
|
||
|
defaultFlavour: 'mocha',
|
||
|
})
|
||
|
],
|
||
|
}
|