mirror of
https://github.com/versia-pub/blog.git
synced 2025-12-06 08:48:18 +01:00
18 lines
498 B
TypeScript
18 lines
498 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],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
title: ["Poppins", "sans-serif"],
|
|
sans: ["Inter", "sans-serif"],
|
|
},
|
|
},
|
|
},
|
|
content: [],
|
|
});
|