Files
generic-landing-page/src/app.js
2021-04-21 19:55:25 +03:00

8 lines
244 B
JavaScript

document.addEventListener('DOMContentLoaded', () => {
const container = document.querySelector('h1');
const hostname = window.location.hostname || document.title;
container.textContent = hostname;
document.title = hostname
});