mirror of
https://github.com/fergalmoran/mixyboos.git
synced 2025-12-22 09:41:39 +00:00
10 lines
209 B
TypeScript
10 lines
209 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
darkMode: ["class"],
|
|
content: ["./src/**/*.{js,ts,jsx,tsx}"],
|
|
|
|
plugins: [require("tailwindcss-animate")],
|
|
};
|
|
module.exports = config;
|