jshmrtn/generator-jm-vuejs

View on GitHub
generators/app/templates/src/client.config.dist.json

Summary

Maintainability
Test Coverage
{
  <%_ if (props.vuejsComponents.indexOf("translations") >= 0) { _%>
  "defaultLanguage": "en_US",
  "languages": [
    "en_US"
  ],
  <%_ } _%>
  <%_ if (props.vuejsComponents.indexOf("httpClient") >= 0) { _%>
  "apiRoot": "https://api.example.com",
  <%_ } _%>
  <%_ if (props.vuejsComponents.indexOf("graphqlClient") >= 0) { _%>
  "graphqlRoot": "https://graphql.example.com",
  <%_ } _%>
  <%_ if (props.errorTracking) { _%>
  "sentryDsn": "",
  <%_ } _%>
  "appName": "<%= props.appName %>"
}