272dbd2107
- Add system log cleanup functionality with batch processing - Optimize v2_settings table performance by unifying value storage - Add comprehensive client support list for one-click subscription - Fix QR code subscription links for specific node types - Fix route addition issues in admin management panel - Enhance admin system controller with log management APIs
20 lines
391 B
JavaScript
Vendored
20 lines
391 B
JavaScript
Vendored
// API地址
|
|
window.routerBase = 'http://127.0.0.1:8000/'
|
|
window.settings = {
|
|
// 站点名称
|
|
title: 'Xboard',
|
|
// 站点描述
|
|
description: 'Xboard',
|
|
assets_path: '/assets',
|
|
// 主题色
|
|
theme: {
|
|
color: 'default', //可选default、blue、black、、darkblue
|
|
},
|
|
// 版本号
|
|
version: '0.1.1-dev',
|
|
// 登陆背景
|
|
background_url: '',
|
|
// 站点LOGO
|
|
logo: '',
|
|
}
|