mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-03-22 12:11:27 -07:00
12 lines
270 B
TypeScript
12 lines
270 B
TypeScript
import { ResolvedConfig } from '../../types.js';
|
|
|
|
export const STATS_DEFAULT_CONFIG: Pick<ResolvedConfig, 'stats'> = {
|
|
stats: {
|
|
toggleKey: 'Backquote',
|
|
markWatchedKey: 'KeyW',
|
|
serverPort: 6969,
|
|
autoStartServer: true,
|
|
autoOpenBrowser: true,
|
|
},
|
|
};
|