mirror of
https://github.com/kevin-DL/full-stack-fastapi-postgresql.git
synced 2026-01-12 10:15:12 +00:00
* 🐛 Fix frontend hijacking /docs in development * 🐛 Fix frontend Dockerfile copying Nginx config
10 lines
105 B
Plaintext
10 lines
105 B
Plaintext
location /api {
|
|
return 404;
|
|
}
|
|
location /docs {
|
|
return 404;
|
|
}
|
|
location /redoc {
|
|
return 404;
|
|
}
|