soiz1's picture
Upload 2891 files
6bcb42f 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;