1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-01-17 22:28:32 +01:00
developer-roadmap/tailwind.config.cjs

12 lines
219 B
JavaScript
Raw Normal View History

2022-12-31 17:01:40 +04:00
/** @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: [],
}