soiz1's picture
Upload folder using huggingface_hub
b18238f verified
raw
history blame contribute delete
276 Bytes
const appTarget = document.getElementById('app');
// Remove everything from the target to fix macOS Safari "Save Page As",
while (appTarget.firstChild) {
appTarget.removeChild(appTarget.firstChild);
}
document.body.classList.add('tw-loaded');
export default appTarget;