mirror of
https://github.com/Xevion/100prisoners.git
synced 2025-12-08 04:06:23 -06:00
13 lines
277 B
JavaScript
13 lines
277 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/**/*.{js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
playfair: ["\"Playfair Display\"", "serif"]
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|