mirror of
https://gitlab.com/sarlink/kyc.git
synced 2025-02-22 21:52:03 +00:00
12 lines
181 B
JavaScript
12 lines
181 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/**/*.{html,js,ejs}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [
|
|
require("daisyui"),
|
|
],
|
|
}
|
|
|