Skip to content
This repository has been archived by the owner on Apr 6, 2022. It is now read-only.

Commit

Permalink
fix: boolean options (#3)
Browse files Browse the repository at this point in the history
not wrap them in a string.
  • Loading branch information
mathe42 committed Aug 24, 2020
1 parent 61e274b commit 613ac58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ export default async function(context, inject) {
domainId: '<%= options.domainId %>',
},
{
ignoreLocalhost: '<%= options.ignoreLocalhost %>',
detailed: '<%= options.detailed %>',
ignoreLocalhost: <%= options.ignoreLocalhost ? 'true' : 'false' %>,
detailed: <%= options.detailed ? 'true' : 'false' %>,
}
)

Expand Down

0 comments on commit 613ac58

Please sign in to comment.