Skip to content

Commit

Permalink
Merge pull request #140 from collie-jun/main
Browse files Browse the repository at this point in the history
배포 전 머지
  • Loading branch information
collie-jun authored Oct 10, 2024
2 parents b690f6e + 87457b8 commit 472d80a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Binary file added travelday-fe/src/images/intro/intro.webp
Binary file not shown.
3 changes: 2 additions & 1 deletion travelday-fe/src/pages/chatPage/chatPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ const ChatPage = ({roomId,isSimple}) => {
let retryCount = 0;
const connectStompClient = () => {
// console.log('STOMP 클라이언트 연결 시도 중...');
const socket = new SockJS('https://dev.thetravelday.co.kr/ws');
// const socket = new SockJS('https://dev.thetravelday.co.kr/ws');
const socket = new SockJS('https://api.thetravelday.co.kr/ws');
// const socket = new SockJS('http://localhost:8080/ws');
// console.log('소켓 접속 성공');
const stompClient = Stomp.over(socket);
Expand Down
1 change: 1 addition & 0 deletions travelday-fe/src/pages/introPage/introPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ const Intro = () => {
<VideoContainer>
<BackgroundVideo autoPlay loop muted>
<source src={require('../../images/intro/intro.mp4')} type="video/mp4" />
{/* <source src="https://temp-travelday.s3.ap-northeast-2.amazonaws.com/intro.mp4" type="video/mp4" /> */}
Your browser does not support the video tag.
</BackgroundVideo>
<OverlayButton onClick={handleButtonClick}>
Expand Down

0 comments on commit 472d80a

Please sign in to comment.