Socialify

Folder ..

Viewing tailwind.config.js
14 lines (15 loc) • 320.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
// tailwind.config.js
/** @type {import('tailwindcss').Config} */
module.exports = {
    content: [
        "./templates/**/*.templ",
        "./templates/**/*.html",
    ],
    theme: {
        extend: {},
    },
    plugins: [
        require('@tailwindcss/forms'),
        require('@tailwindcss/typography'),
    ],
}