|
@@ -75,10 +75,10 @@ self.MonacoEnvironment = {
|
|
|
if (label === 'json') {
|
|
|
return './json.worker.bundle.js';
|
|
|
}
|
|
|
- if (label === 'css') {
|
|
|
+ if (label === 'css' || label === 'scss' || label === 'less') {
|
|
|
return './css.worker.bundle.js';
|
|
|
}
|
|
|
- if (label === 'html') {
|
|
|
+ if (label === 'html' || label === 'handlebars' || label === 'razor') {
|
|
|
return './html.worker.bundle.js';
|
|
|
}
|
|
|
if (label === 'typescript' || label === 'javascript') {
|
|
@@ -146,10 +146,10 @@ self.MonacoEnvironment = {
|
|
|
if (label === 'json') {
|
|
|
return './json.worker.js';
|
|
|
}
|
|
|
- if (label === 'css') {
|
|
|
+ if (label === 'css' || label === 'scss' || label === 'less') {
|
|
|
return './css.worker.js';
|
|
|
}
|
|
|
- if (label === 'html') {
|
|
|
+ if (label === 'html' || label === 'handlebars' || label === 'razor') {
|
|
|
return './html.worker.js';
|
|
|
}
|
|
|
if (label === 'typescript' || label === 'javascript') {
|