mirror of
https://github.com/kmc7468/arkvault.git
synced 2025-12-14 13:58:46 +00:00
12 lines
177 B
TypeScript
12 lines
177 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
export default {
|
|
content: ["./src/**/*.{html,js,svelte,ts}"],
|
|
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
|
|
plugins: [],
|
|
} satisfies Config;
|