mirror of
https://github.com/meshtastic/web.git
synced 2026-01-29 01:41:37 -05:00
22 lines
443 B
JavaScript
22 lines
443 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./index.html", "./src/**/*.{ts,tsx}"],
|
|
theme: {
|
|
fontFamily: {
|
|
mono: [
|
|
"Cascadia Code",
|
|
"ui-monospace",
|
|
"SFMono-Regular",
|
|
"Menlo",
|
|
"Monaco",
|
|
"Consolas",
|
|
"Liberation Mono",
|
|
"Courier New",
|
|
"monospace",
|
|
],
|
|
},
|
|
extend: {},
|
|
},
|
|
plugins: [require("@tailwindcss/forms")],
|
|
};
|