Skip to content

Commit 7ec9e2e

Browse files
committed
enable if the app is named dummy
1 parent aa490bc commit 7ec9e2e

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

index.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ module.exports = {
1212
},
1313

1414
isEnabled() {
15-
return this.app.env !== "production";
15+
// 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";
1621
},
1722

1823
included() {

0 commit comments

Comments
 (0)