mirror of
https://github.com/wasp-lang/wasp.git
synced 2025-01-05 00:04:05 +03:00
12 lines
247 B
JavaScript
12 lines
247 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: [
|
||
|
"./src/**/*.{js,jsx,ts,tsx}",
|
||
|
"node_modules/flowbite-react/**/*.{js,jsx,ts,tsx}",
|
||
|
],
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [require("flowbite/plugin")],
|
||
|
};
|