Skip to content

Commit ae4829c

Browse files
committed
fix: 起動できるように修正
1 parent 1ba5b9d commit ae4829c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

front/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111
"dependencies": {
1212
"react": "^18",
1313
"react-dom": "^18",
14-
"next": "14.1.3"
14+
"next": "14.1.3",
15+
"autoprefixer": "^10.0.1",
16+
"postcss": "^8",
17+
"tailwindcss": "^3.3.0"
1518
},
1619
"devDependencies": {
1720
"typescript": "^5",
1821
"@types/node": "^20",
1922
"@types/react": "^18",
2023
"@types/react-dom": "^18",
21-
"autoprefixer": "^10.0.1",
22-
"postcss": "^8",
23-
"tailwindcss": "^3.3.0",
2424
"eslint": "^8",
2525
"eslint-config-next": "14.1.3"
2626
}

nginx/nginx.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ http {
3131
proxy_http_version 1.1;
3232
proxy_set_header Connection "upgrade";
3333
proxy_set_header Upgrade $http_upgrade;
34-
proxy_pass http://back:80;
34+
proxy_pass http://server:80;
3535
}
3636
}
3737
}

server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ CMD ["./app"]
1818

1919
FROM golang:1.23 as dev
2020
WORKDIR /app
21-
RUN go install github.com/air-verse/air@latest
21+
RUN go install github.com/air-verse/air@v1.60.0
2222
CMD ["air"]

0 commit comments

Comments
 (0)