New: Tailwindcss

This commit is contained in:
2024-10-04 10:52:45 +02:00
parent 70afa170ec
commit e2902457e2
10 changed files with 5879 additions and 330 deletions

View File

@ -0,0 +1,9 @@
const path = require('path')
module.exports = {
plugins: [
require('tailwindcss/nesting'),
require('tailwindcss')(path.resolve(__dirname, 'tailwind.config.js')),
require('autoprefixer'),
],
}

View File

@ -0,0 +1,9 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {},
},
plugins: [],
}