1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00

adding env for RBAC server url to app.config.js

This commit is contained in:
Jamie Hewitt 2021-05-13 17:15:37 +03:00
parent f5da6e4b0b
commit 137f57d5af

View File

@ -43,5 +43,6 @@ module.exports = {
// Used to show or hide the fixed and dynamic price options
// tab to publishers during the price creation.
allowFixedPricing: process.env.GATSBY_ALLOW_FIXED_PRICING || 'true',
allowDynamicPricing: process.env.GATSBY_ALLOW_DYNAMIC_PRICING || 'true'
allowDynamicPricing: process.env.GATSBY_ALLOW_DYNAMIC_PRICING || 'true',
rbacUrl: process.env.RBAC_URL
}