9 lines
246 B
TypeScript
9 lines
246 B
TypeScript
import { toNumber } from 'lodash';
|
|
|
|
import { createAppConfig } from '@/modules/core/config';
|
|
|
|
export const app = createAppConfig((configure) => ({
|
|
port: configure.env.get<number>('APP_PORT', (v) => toNumber(v), 3000),
|
|
prefix: 'api',
|
|
}));
|