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