Skip to content

Commit

Permalink
fix: 파일 형식 .js로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
pepperdad committed Aug 31, 2024
1 parent 409d6cb commit 9f375db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/main/Main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const Main = () => {

useEffect(() => {
const script = document.createElement("script");
script.src = `${import.meta.env.VITE_CLIENT_URL}/deployLoading.ts`;
script.src = `${import.meta.env.VITE_CLIENT_URL}/deployLoading.js`;
script.async = true;
document.body.appendChild(script);

Expand Down

0 comments on commit 9f375db

Please sign in to comment.