๐Ÿ“ฆ IamLizu / probable-parakeet

๐Ÿ“„ tailwind.config.js ยท 16 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16module.exports = {
    purge: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
    darkMode: false, // or 'media' or 'class'
    theme: {
        extend: {
            screens: {
                xs: "420px",
            },
        },
    },
    variants: {
        extend: {},
    },
    plugins: [],
};