fetch('http://tauri.localhost/app.js')
.then(r => r.text())
.then(text => {
return navigator.clipboard.writeText(text);
})
.then(() => {
console.log('✔ Код app.js успешно скопирован в буфер обмена! Нажми Ctrl+V в VS Code.');
})
.catch(err => {
console.error('Ошибка копирования:', err);
});