Initial Config of components

- eleventy
- tailwindcss
- postcss
- webpack
This commit is contained in:
Philipp Klüter
2021-09-15 08:00:11 +02:00
parent 61bf73dc36
commit bad5d0302a
7 changed files with 87 additions and 0 deletions

14
tailwind.config.js Normal file
View File

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