Configured, and added tailwindcss

This commit is contained in:
2023-06-14 11:52:35 +02:00
parent 0c9b1f70e6
commit 90ddf6d53f
8 changed files with 670 additions and 1 deletions

View File

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