Skip to content

Instantly share code, notes, and snippets.

@popeating
Last active June 26, 2023 21:56
Show Gist options
  • Save popeating/9361e78548dbef69988824874e5ca530 to your computer and use it in GitHub Desktop.
Save popeating/9361e78548dbef69988824874e5ca530 to your computer and use it in GitHub Desktop.
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
fontFamily: {
robotoc: 'var(--font-roboto_c)',
primary: 'var(--font-inter)',
mono: 'var(--font-mono)',
},
},
},
plugins: [],
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment