blackbirdchess-website-wip/tailwind.config.cjs

14 lines
158 B
JavaScript
Raw Normal View History

2023-01-05 13:59:59 +01:00
const config = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
container: {
center: true,
},
},
plugins: []
};
module.exports = config;