1
0
mirror of https://github.com/trambarhq/relaks-wordpress-example.git synced 2025-09-02 12:42:38 +02:00

Renamed Nginx config file.

Added references to published libraries to package.json.
Fixed prefetching when there's a base path.
Rebuilt code.
This commit is contained in:
Chung Leong
2019-01-31 20:04:58 +01:00
parent 0a7c292418
commit 52bebf5d1e
11 changed files with 32 additions and 24 deletions

View File

@@ -70,7 +70,7 @@ async function handleCacheStatusRequest(req, res, next) {
total += size;
}
let totalMB = _.round(total / 1024 / 1024, 2);
res.write(`<tr><td colspan="2">Total</td><td>${totalMB}MB</td></tr>`)
res.write(`<tr><td colspan="3">Total</td><td>${totalMB}MB</td></tr>`)
res.write(`</tbody>`);
res.write(`</table>`);
res.write(`</body></html>`);