Last active
January 22, 2022 17:32
-
-
Save merelinguist/7e8eb5320b119961bf29fac339743def to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// npm i @tailwindcss/forms @tailwindcss/typography && npm i -D @types/tailwindcss | |
const defaultTheme = require("tailwindcss/defaultTheme"); | |
const forms = require('@tailwindcss/forms') | |
const typography = require('@tailwindcss/typography') | |
/** @type {import('tailwindcss/tailwind-config').TailwindConfig} */ | |
module.exports = { | |
content: ["./src/**/*.{ts,tsx,js,jsx}"], | |
theme: { | |
extend: { | |
fontFamily: { | |
sans: ['Inter var', ...defaultTheme.fontFamily.sans], | |
}, | |
}, | |
}, | |
plugins: [forms, typography] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment