Files
introduction-to-testing/examples/accident-counter/tailwind.config.js
2024-09-16 15:44:34 -06:00

14 lines
235 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./**/*.{html,js,jsx,ts,tsx}'],
theme: {
extend: {
container: {
center: true,
padding: '1rem',
},
},
},
plugins: [],
};