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 669dd79 commit 96be386Copy full SHA for 96be386
config/environment.js
@@ -33,6 +33,25 @@ module.exports = function (environment) {
33
sourceRepo: 'https://github.com/ember-learn/cli-guides',
34
sourceBranch: 'main',
35
},
36
+
37
+ 'ember-showdown-shiki': {
38
+ theme: 'github-dark',
39
+ languages: [
40
+ 'bash',
41
+ 'css',
42
+ 'http',
43
+ 'javascript',
44
+ 'json',
45
+ 'json5',
46
+ 'ruby',
47
+ 'scss',
48
+ 'yaml',
49
+ 'typescript',
50
+ 'glimmer-js',
51
+ 'glimmer-ts',
52
+ 'handlebars',
53
+ ],
54
+ },
55
};
56
57
if (environment === 'development') {
config/fastboot.js
@@ -0,0 +1,9 @@
1
+module.exports = function () {
2
+ return {
3
+ buildSandboxGlobals(defaultGlobals) {
4
+ return Object.assign({}, defaultGlobals, {
5
+ atob: atob,
6
+ });
7
8
+ };
9
+};
0 commit comments