WIP: initial setup with vite and vitepress, example with button

This commit is contained in:
Alexandr
2022-06-29 19:04:55 +03:00
parent 1a578b1a95
commit 9cd65e332c
27 changed files with 2421 additions and 937 deletions

12
tailwind.config.js Normal file
View File

@@ -0,0 +1,12 @@
module.exports = {
content: [
'./docs/.vitepress/**/*.{js,ts,vue}',
'./docs/**/*.md',
'./src/**/*.{js,ts,vue}',
],
theme: {
extend: {},
},
plugins: [require('flowbite/plugin')],
}