f1f9be5ded
Web app React 18 + TypeScript con quattro schermate: Setup (URL server + password + test connessione), Ingredients (lista ingredienti e preferenze), Recipes (lista 3 ricette generate), RecipeDetail (dettaglio e procedimento). Persistenza URL/password via Capacitor Preferences. Pronto per build Android. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
7 lines
133 B
TypeScript
7 lines
133 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
})
|