thelounge/test/fixtures/.thelounge/config.js
Max Leiter dd05ee3a65
TypeScript and Vue 3 (#4559)
Co-authored-by: Eric Nemchik <eric@nemchik.com>
Co-authored-by: Pavel Djundik <xPaw@users.noreply.github.com>
2022-06-18 17:25:21 -07:00

15 lines
336 B
JavaScript

"use strict";
import config from "../../../defaults/config.js";
config.defaults.name = "Example IRC Server";
config.defaults.host = "irc.example.com";
config.public = true;
config.prefetch = true;
// @ts-ignore
config.host = config.bind = "127.0.0.1";
config.port = 61337;
config.transports = ["websocket"];
module.exports = config;