mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-04 05:22:41 +00:00
46 lines
927 B
TypeScript
46 lines
927 B
TypeScript
export const config = {
|
|
dashboard: {
|
|
route: 'dashboard',
|
|
currentLayout: 'terminal-ide-web',
|
|
enabledLayouts: [
|
|
'terminal-ide-web',
|
|
'terminal-ide-vertical',
|
|
'terminal-ide-horizontal',
|
|
'terminal-only',
|
|
'terminal-web',
|
|
'ide-web-vertical',
|
|
'ide-only',
|
|
'web-only'
|
|
],
|
|
allLayouts: [
|
|
'terminal-ide-web',
|
|
'terminal-ide-vertical',
|
|
'terminal-ide-horizontal',
|
|
'terminal-only',
|
|
'terminal-web',
|
|
'ide-web-vertical',
|
|
'ide-only',
|
|
'web-only'
|
|
],
|
|
hide_messages: false
|
|
},
|
|
ide: {
|
|
route: 'ide',
|
|
autoSaveInterval: 444,
|
|
defaultCode: 'Loading your file...',
|
|
defaultLanguage: 'text',
|
|
deployProcessName: 'login',
|
|
showDeployButton: true
|
|
},
|
|
terminal: {
|
|
route: 'shell'
|
|
},
|
|
messages: {
|
|
route: 'messages',
|
|
showNextButton: false
|
|
},
|
|
testmessenger: {
|
|
route: 'testmessenger'
|
|
}
|
|
};
|