aboutsummaryrefslogtreecommitdiff
path: root/tailwind.config.js
blob: 55b28061595063b1fe10681f8f9f640430b2ff29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module.exports = {
    purge: {
        enabled: false,
        content: [
          './public/views/**.ejs'
        ]
    },
    darkMode: false, // or 'media' or 'class'
    theme: {
        extend: {},
    },
    variants: {
        extend: {},
    },
    plugins: [],
}