// Copyright © 2023 Dean Lee /** @type {import('tailwindcss').Config} */ module.exports = { content: [ "./pages/*.{js,ts,jsx,tsx}", ], theme: { extend: {}, }, plugins: [ require('@tailwindcss/typography'), ], }