mirror of
https://git.rezel.net/LudoTech/traque.git
synced 2026-02-09 02:10:18 +01:00
14 lines
316 B
JavaScript
14 lines
316 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
fontFamily: {
|
|
sans: ["Inter", "sans-serif"],
|
|
serif: ["Merriweather", "serif"],
|
|
},
|
|
plugins: [],
|
|
};
|