Added tailwind support

This commit is contained in:
Orche 2024-03-08 13:14:32 +02:00
parent da1db64e32
commit 23738ea6dd
8 changed files with 2684 additions and 6 deletions

13
postcss.config.cjs Normal file
View file

@ -0,0 +1,13 @@
const tailwindcss = require("tailwindcss");
const autoprefixer = require("autoprefixer");
const config = {
plugins: [
//Some plugins, like tailwindcss/nesting, need to run before Tailwind,
tailwindcss(),
//But others, like autoprefixer, need to run after,
autoprefixer,
],
};
module.exports = config;