wwww_3node_tenstorrent/tailwind.config.js
2025-07-24 09:38:35 +02:00

15 lines
251 B
JavaScript

import typography from '@tailwindcss/typography';
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [
typography,
],
}