mirror of
https://github.com/AventurasTeam/Aventuras.git
synced 2026-05-19 08:01:14 +00:00
11 lines
No EOL
189 B
TypeScript
11 lines
No EOL
189 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: ["./src/**/*.{html,js,svelte,ts}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|
|
export default config; |