document.querySelectorAll('a').forEach(link => { try { if (!link.href.startsWith('https://') && link.href.startsWith('http://')) { if (!link.href.includes(window.location.hostname)) { // HTTPS 지원 여부 확인 (간단한 fetch 요청으로 테스트) fetch(link.href.replace('http://', 'https://'), { method: 'HEAD', mode: 'no-cors' }) .then(() => { link.href = link.href.replace('http://', 'https://'); }) .catch(() => { console.warn('HTTPS 지원하지 않는 링크:', link.href); }); } } } catch (error) { console.error('링크 변환 중 오류 발생:', error); } });
 

sd vae 쉽게 사용하기 설정방법

반응형

 

WebUI에서 checkpoint

 

화면 상단에서 쉽게 변경할 수 있지만 

 

VAE의 경우에는

 

매번 Settings 쪽으로 들어가야 해서 번거로운데

 

이것도 화면 상단에 추가할 수 있다

 

먼저 Settings로 들어온 뒤

 

User interface를 눌러주고

 

Quicksettings list sd_vae를 추가해주자

 

 

 

이후 상단의 Apply settings를 누른 뒤

 

WebUI .bat 까지 종료해주고 다시 실행해주면

 

반응형