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