1.0.1 • Published 2 years ago

@alexmchan/preset-tailwind v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Installation

yarn add -D @alexmchan/preset-tailwind

example tailwind.config.js next config

/** @type {import('tailwindcss').Config} */
module.exports = {
  presets: [require('@alexmchan/preset-tailwind')],
  content: [
    './pages/**/*.{js,ts,jsx,tsx}',
    './components/**/*.{js,ts,jsx,tsx}',
  ],
  theme: {
    extend: {},
  },
  plugins: ['@tailwindcss/typography'],
}