From d10c26e326330beacf9951933053b373817950e3 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sat, 11 Jun 2022 12:43:36 -0400 Subject: Tailwind --- tailwind.config.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tailwind.config.js (limited to 'tailwind.config.js') diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..662cef7 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,15 @@ +/** @type {import('tailwindcss').Config} */ + +module.exports = { + content: [ + "./pages/**/*.{js,ts,jsx,tsx}", + "./components/**/*.{js,ts,jsx,tsx}", + ], + theme: { + fontFamily: { + 'hack': ['Hack', 'sans-serif'] + }, + extend: {}, + }, + plugins: [], +} -- cgit v1.2.3