// ---- TỰ ĐỘNG CHUYỂN TẤT CẢ LINK LOCALHOST SANG FINVEST.IO.VN ----
document.querySelectorAll('a').forEach(function(link) {
if (link.href.includes('localhost:2368')) {
link.href = link.href.replace('http://localhost:2368', 'https://finvest.io.vn');
}
});