1
0
forked from noxious/client

Added TailwindCSS

This commit is contained in:
2024-07-04 16:56:40 +02:00
parent 208f6db1c2
commit caca1c887d
5 changed files with 533 additions and 0 deletions

10
tailwind.config.js Normal file
View File

@ -0,0 +1,10 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [],
purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {},
},
plugins: [],
}