Skip to content

Commit

Permalink
Feature/#105 - ws에서 wss로 변경 (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
xjfcnfw3 authored Nov 21, 2024
2 parents b15ddde + bd69976 commit 07b1a4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/frontend/src/components/layouts/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const Layout = () => {
return (
<div className="flex">
<Sidebar />
<main className="ml-20 flex-1 px-60 py-16">
<main className="ml-20 flex-1 px-48 py-16">
<Outlet />
</main>
</div>
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/sockets/config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { io } from 'socket.io-client';

const URL = 'ws://juchum.info';
const URL = 'wss://juchum.info';

export interface SocketChatType {
stockId: string;
Expand Down

0 comments on commit 07b1a4c

Please sign in to comment.