1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-29 20:21:50 +02:00

Add markdown roadmap support

This commit is contained in:
Kamran Ahmed
2022-12-31 20:37:14 +04:00
parent 358c1440d8
commit 274eeece7a
6 changed files with 320 additions and 10 deletions

View File

@@ -1,11 +1,11 @@
/** @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: [],
}
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue,svg}"],
theme: {
extend: {},
container: {
center: true,
},
},
plugins: [require("@tailwindcss/typography")],
};