mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
13 lines
302 B
JavaScript
13 lines
302 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: ["selector", 'html:has(head > [data-stack-theme="dark"])'],
|
|
content: [
|
|
"./src/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./node_modules/@stackframe/stack-ui/src/**/*.{ts,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
};
|