mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-18 15:33:52 +01:00
17 lines
419 B
JavaScript
17 lines
419 B
JavaScript
const sharedConfig = require("@yaakapp-internal/tailwind-config");
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
...sharedConfig,
|
|
content: [
|
|
"./*.{html,ts,tsx}",
|
|
"./commands/**/*.{ts,tsx}",
|
|
"./components/**/*.{ts,tsx}",
|
|
"./hooks/**/*.{ts,tsx}",
|
|
"./init/**/*.{ts,tsx}",
|
|
"./lib/**/*.{ts,tsx}",
|
|
"./routes/**/*.{ts,tsx}",
|
|
"../../packages/ui/src/**/*.{ts,tsx}",
|
|
],
|
|
};
|