We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9abe26d commit a53cdabCopy full SHA for a53cdab
src/App.tsx
@@ -27,6 +27,7 @@ import { useImmer } from 'use-immer';
27
import { useRef } from 'react';
28
29
interface LagrangeConfigBase {
30
+ "$schema": string,
31
Logging: {
32
LogLevel: {
33
Default: string;
@@ -116,6 +117,7 @@ const theme = createTheme({
116
117
function App() {
118
const nextImplKey = useRef(0);
119
const [configBase, setConfigBase] = useImmer<LagrangeConfigBase>({
120
+ '$schema': "https://raw.githubusercontent.com/LagrangeDev/Lagrange.Core/master/Lagrange.OneBot/Resources/appsettings_schema.json",
121
'Logging': {
122
'LogLevel': {
123
'Default': 'Information',
0 commit comments