1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-25 16:39:02 +02:00
Files
developer-roadmap/tailwind.config.cjs
Kamran Ahmed 16f48a1958 Initial commit
2022-12-31 17:01:40 +04:00

12 lines
219 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: [],
}