diff --git a/functions/nehubaConfig/nehubaConfig.js b/functions/nehubaConfig/nehubaConfig.js index 52f1f91a7239b329c348c6b50adef7c05f6b0181..3ea5fd16ed1f4bf654970b6f870649ad15a82267 100644 --- a/functions/nehubaConfig/nehubaConfig.js +++ b/functions/nehubaConfig/nehubaConfig.js @@ -1,5 +1,5 @@ const fs = require('fs') - +const { reconfigureUrl } = require('../../deploy/util/reconfigPrecomputedServer') exports.handler = (ev, ctx, cb) => { const { path, @@ -29,7 +29,7 @@ exports.handler = (ev, ctx, cb) => { } return cb(null, { status: 200, - body: data, + body: reconfigureUrl(data), headers: { 'Content-type': 'application/json' }