16 lines
320 B
JavaScript
16 lines
320 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx}",
|
|
"./components/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
inter: ["Inter"],
|
|
},
|
|
},
|
|
},
|
|
plugins: [require("tailwind-scrollbar")({ nocompatible: true })],
|
|
}
|