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