mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2024-12-05 02:21:31 +00:00
Allow configuring monaco minimap from tfw config.ts
This commit is contained in:
parent
8d9a9b1aea
commit
8de4c30f80
@ -30,7 +30,8 @@ export const config = {
|
||||
showDeployButton: true,
|
||||
reloadIframeOnDeploy: true,
|
||||
showConsoleOnDeploy: true,
|
||||
autoDetectFileLanguage: true
|
||||
autoDetectFileLanguage: true,
|
||||
showMiniMap: false
|
||||
},
|
||||
terminal: {
|
||||
route: 'shell'
|
||||
|
@ -50,7 +50,7 @@ export class IdeComponent implements OnInit {
|
||||
theme: 'vs-dark',
|
||||
language: config.ide.defaultLanguage,
|
||||
glyphMargin: false,
|
||||
minimap: {enabled: false}
|
||||
minimap: {enabled: config.ide.showMiniMap}
|
||||
};
|
||||
|
||||
@Output() newLogs = new EventEmitter<any>();
|
||||
|
Loading…
Reference in New Issue
Block a user