8 lines
139 B
TypeScript
8 lines
139 B
TypeScript
import type { ServerOptions } from './server';
|
|
|
|
export const serverConfig: ServerOptions = {
|
|
dev: false,
|
|
port: 2022,
|
|
prefix: '/trpc'
|
|
};
|