UNPKG

@deskthing/cli

Version:
34 lines (33 loc) 599 B
// src/config/deskthing.config.ts function defineConfig(config) { return config; } var defaultConfig = { development: { logging: { level: "info", prefix: "[DeskThing Server]" }, client: { logging: { level: "info", prefix: "[DeskThing Client]", enableRemoteLogging: true }, clientPort: 3e3, viteLocation: "http://localhost", vitePort: 5173, linkPort: 8080 }, server: { editCooldownMs: 1e3, refreshInterval: 0 } } }; var serverConfig = { ...defaultConfig }; export { defineConfig };