1
0
mirror of https://github.com/zumbiepig/MineXLauncher.git synced 2025-06-26 10:05:10 +00:00

build process stuff

This commit is contained in:
zumbiepig
2024-08-30 16:29:45 -07:00
parent 57b89f5bde
commit a25c6d1b15
17 changed files with 170 additions and 218 deletions

View File

@@ -1,7 +1,7 @@
import { join } from 'path';
import { env } from 'bun';
import express, { json, urlencoded } from 'express';
import chalk from 'chalk'
import chalk from 'chalk';
import compression from 'compression';
import cookieParser from 'cookie-parser';
import debug from 'debug';
@@ -30,7 +30,7 @@ app.use(
})
);
app.use(morgan('combined'));
app.use(morgan(isDev ? 'dev' : 'combined'));
app.use(json());
app.use(urlencoded({ extended: false }));