file-uploader/tailwind.config.js

11 lines
204 B
JavaScript
Raw Normal View History

2024-03-12 09:44:25 +00:00
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
2024-03-16 11:24:03 +00:00
darkMode: 'selector',
2024-03-12 09:44:25 +00:00
theme: {
2024-03-16 11:24:03 +00:00
extend: {},
container: { center: true }
2024-03-12 09:44:25 +00:00
},
plugins: []
};