mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-04-09 16:19:25 -07:00
12 lines
278 B
TypeScript
12 lines
278 B
TypeScript
import { ResolvedConfig } from '../../types/config.js';
|
|
|
|
export const STATS_DEFAULT_CONFIG: Pick<ResolvedConfig, 'stats'> = {
|
|
stats: {
|
|
toggleKey: 'Backquote',
|
|
markWatchedKey: 'KeyW',
|
|
serverPort: 6969,
|
|
autoStartServer: true,
|
|
autoOpenBrowser: false,
|
|
},
|
|
};
|