작성
·
65
0
link href="https://fonts.gstatic.com" rel="preconnect">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Nunito:300,300i,400,400i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet"
th:href="@{/assets/vendor/bootstrap/css/bootstrap.min.css}">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet"
th:href="@{/assets/vendor/bootstrap-icons/bootstrap-icons.css}">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet"
th:href="@{/assets/vendor/boxicons/css/boxicons.min.css}">
<link href="assets/vendor/quill/quill.snow.css" rel="stylesheet" th:href="@{/assets/vendor/quill/quill.snow.css}">
<link href="assets/vendor/quill/quill.bubble.css" rel="stylesheet"
th:href="@{/assets/vendor/quill/quill.bubble.css}">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet"
th:href="@{/assets/vendor/remixicon/remixicon.css}">
<link href="assets/vendor/simple-datatables/style.css" rel="stylesheet"
th:href="@{/assets/vendor/simple-datatables/style.css}">
그래서 이렇게하면 뷰페이지의 창깨짐 오류는 사라지는데..
docker로 넘어갈 때는 어떻게하죠??
th:href="@{/admin/assets/vendor/quill/quill.bubble.css}"
와 같이 경로를 설정한 경우, 해당 경로가 올바른지 확인하세요. Spring은 경로 앞에 /
가 붙어야 정적 리소스를 찾을 수 있습니다.
아 제가 강의들으면서 착가했나 봅니다. th:replace에서 / 빼라는 거 였네요.
죄송합니다.