Загрузка данных


fetch('http://tauri.localhost/app.js')
  .then(r => r.text())
  .then(text => {
    copy(text);
    console.log('✔ Код app.js скопирован в буфер обмена! Просто вставь (Ctrl+V) в VS Code.');
  });