Configured, and added tailwindcss (#223)

Co-authored-by: widlam <mikolaj.widla@gmail.com>
Reviewed-on: #223
Reviewed-by: Adam Bem <bema@noreply.example.com>
Co-authored-by: Mikolaj Widla <widlam@noreply.example.com>
Co-committed-by: Mikolaj Widla <widlam@noreply.example.com>
This commit is contained in:
2023-06-14 12:41:13 +02:00
committed by Adam Bem
parent 0c9b1f70e6
commit e4549c7baf
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: [],
}