7 lines
172 B
JavaScript
7 lines
172 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./app/**/*.{js,jsx}", "./components/**/*.{js,jsx}"],
|
|
theme: { extend: {} },
|
|
plugins: [],
|
|
};
|