Skip to content

Instantly share code, notes, and snippets.

@merelinguist
Last active January 22, 2022 17:32
Show Gist options
  • Save merelinguist/7e8eb5320b119961bf29fac339743def to your computer and use it in GitHub Desktop.
Save merelinguist/7e8eb5320b119961bf29fac339743def to your computer and use it in GitHub Desktop.
// 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