frontend: Update file extensions in /architecture page from .js to .t… (#2199)

This commit is contained in:
Omar Ishtiaq 2024-05-29 12:00:29 +05:30 committed by GitHub
parent f43f2e4894
commit b36474245a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,7 +11,7 @@ The Home Assistant frontend can be broken up in 4 parts:
### Bootstrap ### Bootstrap
File: `src/entrypoints/core.js` File: `src/entrypoints/core.ts`
This is a very tiny script which is the first thing that is loaded on the page. It is responsible for checking for authentication credentials and setting up the websocket connection with the backend. This is a very tiny script which is the first thing that is loaded on the page. It is responsible for checking for authentication credentials and setting up the websocket connection with the backend.
@ -19,7 +19,7 @@ The script allows us to start downloading the data while also downloading the re
### App shell ### App shell
File: `src/entrypoints/app.js` File: `src/entrypoints/app.ts`
This is everything that is required to render the sidebar and handle the routing. This is everything that is required to render the sidebar and handle the routing.