10 lines
208 B
JavaScript
10 lines
208 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
|
|
content: [],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
};
|