mirror of
https://github.com/wasp-lang/wasp.git
synced 2025-01-01 13:42:12 +03:00
f7712105af
Co-authored-by: vincanger <70215737+vincanger@users.noreply.github.com>
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")],
|
|
};
|