start implementing client based on meshtxt

This commit is contained in:
liamcottle
2025-02-13 01:02:27 +13:00
parent fd680c2aeb
commit 6d4e7e4431
24 changed files with 3279 additions and 3 deletions

17
tailwind.config.js Normal file
View File

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