cards/tailwind.config.js

16 lines
285 B
JavaScript
Raw Normal View History

2024-07-20 23:00:19 -04:00
//
// This file is here until trunk can be told to source it from /client
//
2024-07-18 19:53:28 -04:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: {
relative: true,
2024-07-20 23:00:19 -04:00
files: ["./client/*.html", "./client/src/**/*.rs"],
2024-07-18 19:53:28 -04:00
},
theme: {
extend: {},
},
plugins: [],
};