Skip to content

Commit

Permalink
corrigindo erros de imagens
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusVinix committed Sep 19, 2023
1 parent aaec46c commit d54fd64
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
- transcendence-network
restart: unless-stopped
ports:
- "4220:4220"
- "80:80"
environment:
- VITE_API_HOST=api
env_file:
Expand Down
8 changes: 4 additions & 4 deletions web/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ http {

proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
listen [::]:4220;
listen 4220;
server_name pong.42sp.org.br localhost;
listen [::]:80;
listen 80;
server_name 44.201.232.125 localhost;
location / {
root /app/;
index index.html;
Expand All @@ -31,7 +31,7 @@ http {
}

location /data {
alias /app/data;
alias /app/dist/data;
autoindex on;
try_files $uri $uri/ /app/data;
}
Expand Down
Binary file added web/public/404.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web/public/logo-small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web/public/powerUp-box.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion web/src/pages/Home/Home.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@include displayFlex(center);
background-size: cover;
background-repeat: no-repeat;
background-image: url('/assets/game.gif');
background-image: url('/game.gif');
width: 810px;
height: 600px;
border: 3px solid $primaryColor ;
Expand Down

0 comments on commit d54fd64

Please sign in to comment.