mirror of
https://github.com/status-im/status-tutorials.git
synced 2026-08-30 19:51:07 +00:00
10 lines
198 B
TypeScript
10 lines
198 B
TypeScript
const devProxy: { [key: string]: {} } = {
|
|
"/api": {
|
|
target: "https://api.nasa.gov",
|
|
pathRewrite: { "^/api": "" },
|
|
changeOrigin: true,
|
|
},
|
|
};
|
|
|
|
export default devProxy;
|