We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa490bc commit 7ec9e2eCopy full SHA for 7ec9e2e
1 file changed
index.js
@@ -12,7 +12,12 @@ module.exports = {
12
},
13
14
isEnabled() {
15
- return this.app.env !== "production";
+ // enable this addon if were building for the dummy
16
+ // app. that's because this is most likely an addon docs
17
+ // build and we need this addon enabled for our docs
18
+ // to deploy correctly.
19
+ return this.app.name === "dummy" ||
20
+ this.app.env !== "production";
21
22
23
included() {
0 commit comments