blob: 1c042f0e4999d54e741fe75e57a8bb1afbd13e29 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import type { Config } from "tailwindcss";
import web from "@hoarder/tailwind-config/web";
const config = {
content: web.content,
presets: [web],
} satisfies Config;
export default config;
|