Files
dlearn-admin/tailwind.config.js
T
2024-06-27 16:21:52 +03:30

16 lines
282 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {
container: {
center: true
}
},
},
plugins: [],
}