Spaces:
Running
Running
File size: 276 Bytes
f2bee8a |
1 2 3 4 5 6 7 8 9 10 11 |
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;
|