mirror of
https://github.com/mempool/mempool.git
synced 2024-11-19 18:03:00 +01:00
12 lines
355 B
JavaScript
12 lines
355 B
JavaScript
const fs = require('fs');
|
|
|
|
let PROXY_CONFIG = require('./proxy.conf');
|
|
|
|
PROXY_CONFIG.forEach(entry => {
|
|
entry.target = entry.target.replace("mempool.space", "mempool.ninja");
|
|
entry.target = entry.target.replace("liquid.network", "liquid.place");
|
|
entry.target = entry.target.replace("bisq.markets", "bisq.ninja");
|
|
});
|
|
|
|
module.exports = PROXY_CONFIG;
|