16 lines
274 B
JavaScript
16 lines
274 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["content/**/*.md", "layouts/**/*.html"],
|
|
theme: {
|
|
fontFamily: {
|
|
main: "Spline Sans",
|
|
},
|
|
fontWeight: {
|
|
bold: 700,
|
|
},
|
|
extend: {
|
|
//
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|