18 lines
430 B
JavaScript
18 lines
430 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx}",
|
|
"./components/**/*.{js,ts,jsx,tsx}",
|
|
"./layouts/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
roboto: ["Roboto", "sans-serif"],
|
|
plusJakarta: ["Plus Jakarta Sans", "sans-serif"],
|
|
robotoMono: ["Roboto Mono", "monospace"],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|