From 2aa2fa38a4c1386ffcceb4397fb88ab74666372d Mon Sep 17 00:00:00 2001 From: fabio Date: Fri, 6 Mar 2026 21:32:24 +0100 Subject: [PATCH] pulizia eliminato riferimenti a htmx. integrato user menu utilizzando web_components --- web_components/README.md | 9 +++++---- web_components/tailwind.config.js | 12 ++++++++++++ 2 files changed, 17 insertions(+), 4 deletions(-) create mode 100644 web_components/tailwind.config.js 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: [], +};