aboutsummaryrefslogtreecommitdiff
path: root/tailwind.config.js
blob: 662cef7b2ebe8e94e9b1ce485199ab1f1ed935a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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: [],
}