📚 Reference


📜 Chapter


Proxy

Vue proxy (뷰 프록시)


proxy


module.exports = {
  //...
  devServer: {
    proxy: {
      '/api': {
        target: '<http://localhost:3000>',
        pathRewrite: { '^/api': '' },
      },
    },
  },
};