diff --git a/frontend/nginx.conf b/frontend/nginx.conf
index 14757bb..bcef841 100644
--- a/frontend/nginx.conf
+++ b/frontend/nginx.conf
@@ -12,6 +12,12 @@ server {
add_header Cache-Control "public, immutable";
}
+ location /api/ {
+ proxy_pass http://backend:8000/api/;
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ }
+
location / {
try_files $uri $uri/ /index.html;
}
diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx
index 3325284..2e26976 100644
--- a/frontend/src/App.tsx
+++ b/frontend/src/App.tsx
@@ -2,6 +2,8 @@ import { BrowserRouter, Routes, Route } from 'react-router-dom'
import Layout from './components/layout/Layout'
import HomePage from './pages/HomePage'
import TodosPage from './pages/TodosPage'
+import ShoppingPage from './pages/ShoppingPage'
+import NotesPage from './pages/NotesPage'
export default function App() {
return (
@@ -10,6 +12,8 @@ export default function App() {
Module en cours de développement — Phase 2b
+Module en cours de développement — Phase 3
+