mirror of
https://github.com/versia-pub/blog.git
synced 2025-12-06 16:48:18 +01:00
10 lines
311 B
TypeScript
10 lines
311 B
TypeScript
|
|
import forms from "@tailwindcss/forms";
|
||
|
|
import typography from "@tailwindcss/typography";
|
||
|
|
import type { Config } from "tailwindcss";
|
||
|
|
|
||
|
|
// Default are on https://tailwindcss.nuxtjs.org/tailwind/config#default-configuration
|
||
|
|
export default (<Partial<Config>>{
|
||
|
|
plugins: [forms, typography],
|
||
|
|
content: [],
|
||
|
|
});
|