mirror of
https://github.com/PeterMaquiran/tvone.git
synced 2026-04-18 15:27:52 +00:00
15 lines
362 B
TypeScript
15 lines
362 B
TypeScript
|
|
import type { Config } from "tailwindcss";
|
||
|
|
|
||
|
|
const config: Config = {
|
||
|
|
darkMode: "class", // Isto desativa o modo automático do sistema
|
||
|
|
content: [
|
||
|
|
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
|
||
|
|
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
|
||
|
|
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
|
||
|
|
],
|
||
|
|
theme: {
|
||
|
|
extend: {},
|
||
|
|
},
|
||
|
|
plugins: [],
|
||
|
|
};
|
||
|
|
export default config;
|