11 lines
208 B
TypeScript

import { Environment } from './environment.type';
export const environment: Environment = {
production: true,
nats: {
connectionOptions: {
servers: ['ws://192.168.50.208:8088'],
},
},
};