initial commit: fork

This commit is contained in:
2023-10-27 10:31:20 +02:00
commit a52dbbc103
195 changed files with 17484 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import type { Config } from 'tailwindcss';
export default {
content: [''],
theme: {
extend: {}
},
plugins: []
} satisfies Config;

View File

@@ -0,0 +1,15 @@
{
"name": "@master-bot/tailwind-config",
"version": "0.1.0",
"main": "index.ts",
"license": "ISC",
"files": [
"index.ts",
"postcss.js"
],
"devDependencies": {
"autoprefixer": "^10.4.14",
"postcss": "^8.4.27",
"tailwindcss": "^3.3.3"
}
}

View File

@@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {}
}
};