🚏 Added a static route for comics

This commit is contained in:
2021-07-14 09:59:32 -07:00
parent f14800ffc2
commit a3d07d62c8

View File

@@ -66,6 +66,10 @@ export default class ApiService extends Service {
path: "/userdata", path: "/userdata",
use: [ApiGateway.serveStatic("userdata")], use: [ApiGateway.serveStatic("userdata")],
}, },
{
path: "/comics",
use: [ApiGateway.serveStatic("comics")],
},
], ],
// Do not log client side errors (does not log an error response when the error.code is 400<=X<500) // Do not log client side errors (does not log an error response when the error.code is 400<=X<500)
log4XXResponses: false, log4XXResponses: false,