diff --git a/web_components/README.md b/web_components/README.md
index 8337435..1c56572 100644
--- a/web_components/README.md
+++ b/web_components/README.md
@@ -5,7 +5,7 @@ Progetto Vue 3 (Vite) per creare Web Components custom element.
## Quick start
```bash
-cd quasar/web_components
+cd web_components
npm i
npm run dev
```
@@ -19,12 +19,13 @@ npm run build
```
Output in `dist/`:
-- `trustcontact-web-components.es.js`
-- `trustcontact-web-components.iife.js`
+- `omnimed-web-components.es.js`
+- `omnimed-web-components.iife.js`
## Uso nel browser
```html
-
+
+
```
diff --git a/web_components/tailwind.config.js b/web_components/tailwind.config.js
new file mode 100644
index 0000000..377d78b
--- /dev/null
+++ b/web_components/tailwind.config.js
@@ -0,0 +1,12 @@
+/** @type {import('tailwindcss').Config} */
+export default {
+ content: [
+ './index.html',
+ './src/**/*.{vue,js,ts,jsx,tsx}',
+ '../web/templates/**/*.html',
+ ],
+ theme: {
+ extend: {},
+ },
+ plugins: [],
+};