31 lines
881 B
HTML
31 lines
881 B
HTML
<!doctype html>
|
|
<html lang="ru">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>ДФиП/ССП — Табличный редактор</title>
|
|
|
|
<script>
|
|
(function () {
|
|
const isLocal =
|
|
window.location.hostname === 'localhost' ||
|
|
window.location.hostname === '127.0.0.1' ||
|
|
window.location.hostname.includes('local') ||
|
|
window.location.port === '3000';
|
|
|
|
if (isLocal) {
|
|
const base = document.createElement('base');
|
|
base.href = '/';
|
|
document.head.insertBefore(base, document.head.firstChild);
|
|
}
|
|
})();
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
</body>
|
|
|
|
</html> |