<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="/main.css" rel="stylesheet">
</head>
<body>
<body class="grey-bg">
<%- include('nav.ejs') %>
<div class="detail-bg">
<h4><%= JSON.stringify(posts.title) %></h4>
<p><%= JSON.stringify(posts.content) %></p>
< img src="<%= JSON.stringify(posts.img) %>">
</div>
</body>
</body>
</html>
이 코드에서 < img src="<%= JSON.stringify(posts.img) %>">이 출력될때
'https://seonwooforum1.s3.us-east-2.amazonaws.com/1709774914976' 이런 주소로 출력이 되는데 이게 이미지 파일이 아니라 업로드가 안되네요.....
잘못된 이미지 파일을 업로드 한건가요?