diff --git a/frontend/package.json b/frontend/package.json index 1c69e4f..72999ad 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -5,8 +5,8 @@ "type": "module", "scripts": { "dev": "vite --host 0.0.0.0 --port 80", - "production": "tsc -b && vite build && vite --host 0.0.0.0 --port 80", - "demo": "tsc -b && vite build && vite --host 0.0.0.0 --port 80", + "production": "tsc -b && vite build", + "demo": "tsc -b && vite build", "build": "tsc -b && vite build", "lint": "eslint .", "preview": "vite preview" diff --git a/frontend/src/pages/About.tsx b/frontend/src/pages/About.tsx index 47f25f0..70f1713 100644 --- a/frontend/src/pages/About.tsx +++ b/frontend/src/pages/About.tsx @@ -5,7 +5,7 @@ function About() {

This app uses the following components:

Frontend:

- +

Backend:

Containerization:

diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index 5e6b0a0..85c7f6c 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -5,7 +5,5 @@ import react from "@vitejs/plugin-react"; export default defineConfig({ plugins: [react()], server: { - hmr: false, - allowedHosts: ["recipe-prod.fredzernia.com", "recipe-demo.fredzernia.com"], }, });