mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
9 lines
178 B
JavaScript
9 lines
178 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [require("daisyui")],
|
|
};
|