UNPKG

@tesler-ui/cra-template-typescript

Version:

The base TypeScript template for Create React App.

11 lines (9 loc) 217 B
const { createProxyMiddleware } = require('http-proxy-middleware'); module.exports = function(app) { app.use( '/api/v1', createProxyMiddleware({ target: 'http://localhost:8080' }) ); };