aboutsummaryrefslogtreecommitdiff
path: root/tailwind.config.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2022-06-11 12:43:36 -0400
committerAndrew Lee <alee14498@protonmail.com>2022-06-11 12:43:36 -0400
commitd10c26e326330beacf9951933053b373817950e3 (patch)
tree7888a79ec9e75b25a0377d9910bdbdf0d6276a5d /tailwind.config.js
parent1f9b96db4b39ce57e75eea20ee3c01b982bea182 (diff)
downloadpersonal-website-d10c26e326330beacf9951933053b373817950e3.tar.gz
personal-website-d10c26e326330beacf9951933053b373817950e3.tar.bz2
personal-website-d10c26e326330beacf9951933053b373817950e3.zip
Tailwind
Diffstat (limited to 'tailwind.config.js')
-rw-r--r--tailwind.config.js15
1 files changed, 15 insertions, 0 deletions
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: [],
+}