/** * @file Webserver * @description The MangoRecipe front-end * @module webserver/index */ import type { NextFunction, Request, Response } from "express"; import type { SessionOptions } from "express-session"; import { minify } from "terser"; import express from "express"; import expressSession from "express-session"; import path from "path";