7 Commits

3 changed files with 6 additions and 3 deletions

View File

@@ -1,4 +1,3 @@
branch=
DEV_API_URL=http://localhost:3101 DEV_API_URL=http://localhost:3101
VITE_DIAGRAM_API_URL=http://localhost:3002 VITE_DIAGRAM_API_URL=http://localhost:3002
VITE_TOIR_LIGHT_ORIGIN=https://toir-light.greact.ru VITE_TOIR_LIGHT_ORIGIN=https://toir-light.greact.ru

View File

@@ -1,6 +1,5 @@
services: services:
drill-ui: drill-ui:
container_name: drill-ui${branch:+-${branch}}
build: build:
context: . context: .
args: args:

View File

@@ -7,5 +7,10 @@ server {
location / { location / {
try_files $uri $uri/ /index.html; try_files $uri $uri/ /index.html;
# отключаем кеширование вообще пока активная разработка
add_header Cache-Control "no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0";
add_header Pragma "no-cache";
add_header Expires "0";
} }
} }