1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-21 16:41:24 +02:00

Initial commit

This commit is contained in:
Kamran Ahmed
2022-12-31 17:01:40 +04:00
commit 16f48a1958
178 changed files with 15588 additions and 0 deletions

11
tailwind.config.cjs Normal file
View File

@@ -0,0 +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: [],
}