From eb27f21fd2a109638319846d301b89714a5010c5 Mon Sep 17 00:00:00 2001 From: nkanaev Date: Sun, 12 Jul 2026 22:36:16 +0100 Subject: [PATCH] frontend: rename index.html template to app.html --- src/frontend/js/app.ts | 2 +- src/frontend/js/templates/{index.html => app.html} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/frontend/js/templates/{index.html => app.html} (100%) diff --git a/src/frontend/js/app.ts b/src/frontend/js/app.ts index e63297d..7c3a67a 100644 --- a/src/frontend/js/app.ts +++ b/src/frontend/js/app.ts @@ -1,7 +1,7 @@ import Vue from 'vue/dist/vue.esm.js' import i18n from './i18n' import api from './api' -import template from './templates/index.html' with {type: 'text'} +import template from './templates/app.html' with {type: 'text'} import icons from './icons' import { setupKeybindings } from './key' import { scrollto, debounce, dateRepr } from './utils' diff --git a/src/frontend/js/templates/index.html b/src/frontend/js/templates/app.html similarity index 100% rename from src/frontend/js/templates/index.html rename to src/frontend/js/templates/app.html