Allow app-name configuration to change the name of the PWA (#6093)

This commit is contained in:
Ahmed El-Sharnoby 2023-03-22 03:02:31 +02:00 committed by GitHub
parent 78282a1fd6
commit bca733de3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -40,6 +40,7 @@ export class CodeServerRouteWrapper {
//#region Route Handlers
private manifest: express.Handler = async (req, res, next) => {
const appName = req.args["app-name"] || "code-server"
res.writeHead(200, { "Content-Type": "application/manifest+json" })
return res.end(
@ -47,8 +48,8 @@ export class CodeServerRouteWrapper {
req,
JSON.stringify(
{
name: "code-server",
short_name: "code-server",
name: appName,
short_name: appName,
start_url: ".",
display: "fullscreen",
description: "Run Code on a remote server.",