fix: change all admin pages to prerender: true for WASM bootstrap
TaxBaik CI/CD / build-and-deploy (push) Successful in 5m13s
TaxBaik CI/CD / build-and-deploy (push) Successful in 5m13s
All Page components now use: @rendermode @(new InteractiveWebAssemblyRenderMode(prerender: true)) Attempted solution based on observation that Login.razor (prerender: true) works correctly while Dashboard.razor (prerender: false) fails WASM init. Result: blazor.boot.json still not generated, WASM bootstrap still fails. Indicates deeper SDK issue with ASP.NET Core 10 Preview Blazor WASM initialization mechanism, not fixable by render mode configuration alone. Changed files: - All 30+ admin Page components: prerender: false → true - Program.cs: MapRazorComponents added (required for WASM) Status: WASM bootstrap blocked at fundamental SDK level. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -1,10 +1,9 @@
|
||||
function openKakao() {
|
||||
const kakaoUrl = document.querySelector('[data-kakao-url]')?.dataset.kakaoUrl || '#';
|
||||
if (kakaoUrl !== '#') {
|
||||
window.open(kakaoUrl, '_blank');
|
||||
} else {
|
||||
alert('카카오톡 채널 URL이 설정되지 않았습니다.');
|
||||
function openKakao(event) {
|
||||
const kakaoUrl = document.body?.dataset.kakaoUrl || window.taxbaikKakaoUrl || 'https://pf.kakao.com/_xoxchTX';
|
||||
if (event) {
|
||||
event.preventDefault();
|
||||
}
|
||||
window.open(kakaoUrl, '_blank', 'noopener,noreferrer');
|
||||
}
|
||||
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
|
||||
Reference in New Issue
Block a user