9 lines
172 B
JavaScript
Raw Normal View History

2022-10-15 21:38:00 +10:00
/** @type {import('tailwindcss').Config} */
module.exports = {
prefix: 'tw-',
content: ["./src/**/*.{html,js,ts,tsx}"],
theme: {
extend: {},
},
plugins: [],
}