Skip to content
Snippets Groups Projects
setupProxy.js 277 B
Newer Older
  • Learn to ignore specific revisions
  • const proxy = require('http-proxy-middleware');
    
    module.exports = function(app) {
      app.use(proxy('/api', { target: 'http://127.0.0.1:8000/' }))
      app.use(proxy('/media', { target: 'http://127.0.0.1:8000/' }))
      app.use(proxy('/admin', { target: 'http://127.0.0.1:8000/' }))
    };