Files
eleventy-with-tailwind/tailwind.config.js
Philipp Klüter bad5d0302a Initial Config of components
- eleventy
- tailwindcss
- postcss
- webpack
2021-09-15 08:00:11 +02:00

15 lines
269 B
JavaScript

module.exports = {
theme: {
container: {
center: true,
padding: '2rem',
},
extend: {},
},
variants: {
extend: {},
},
plugins: [require('@tailwindcss/typography')],
pruge: ['./src/**/*.js', './src/**/*.njk', './src/**/*.svg'],
};