el.xwx.moe/tailwind.config.js

13 lines
242 B
JavaScript
Raw Normal View History

2023-01-22 15:39:35 -06:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
};