mirror of
https://github.com/fergalmoran/supanextail.git
synced 2025-12-22 09:17:54 +00:00
17 lines
339 B
JavaScript
17 lines
339 B
JavaScript
module.exports = {
|
|
mode: "jit",
|
|
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
|
|
darkMode: false, // or 'media' or 'class'
|
|
theme: {
|
|
fontFamily: {
|
|
title: ["Poppins"],
|
|
body: ["Open Sans"],
|
|
},
|
|
extend: {},
|
|
},
|
|
variants: {
|
|
extend: {},
|
|
},
|
|
plugins: [require("daisyui")],
|
|
};
|