Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ass/src/commit/b3093b23e3e89ae10755068bd29032fdd3f1cad8/common/global.d.ts You should set ROOT_URL correctly, otherwise the web may not work correctly.
ass/common/global.d.ts

20 lines
258 B

import { Request, Response } from 'express';
declare global {
namespace Express {
interface Request {
/**
* ass-specific request items
*/
ass: {
/**
* Combination of {protocol}://{hostname}
*/
host: string
}
}
}
}