public/js/{util,ui,reactions,modals,comments,feed,main}.js 로 분리하고
dashboard/project 에서 <script type="module" src="/public/js/main.js"> 로 로드.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
12 lines
379 B
Plaintext
12 lines
379 B
Plaintext
<%- include("_header") %>
|
|
<main class="main">
|
|
<div class="detail-wrap">
|
|
<div class="modal" style="margin:0 auto;animation:none">
|
|
<%- include("_project_detail", { p: project, comments: comments, me: user.sabun, returnTo: "/projects/" + project.id, modal: false }) %>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<script type="module" src="/public/js/main.js"></script>
|
|
</body>
|
|
</html>
|