mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-01-17 06:08:36 +01:00
12 lines
267 B
JavaScript
12 lines
267 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue,svg}"],
|
|
theme: {
|
|
extend: {},
|
|
container: {
|
|
center: true,
|
|
},
|
|
},
|
|
plugins: [require("@tailwindcss/typography")],
|
|
};
|