public-web/tailwind.config.js

17 lines
274 B
JavaScript
Raw Normal View History

2022-10-20 19:51:21 +02:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["content/**/*.md", "layouts/**/*.html"],
theme: {
2022-10-20 23:26:03 +02:00
fontFamily: {
main: "Spline Sans",
},
fontWeight: {
bold: 700,
},
extend: {
//
},
2022-10-20 19:51:21 +02:00
},
plugins: [],
};