How should I change nuxt, to add token, when I need to act as an agent?

nuxt,` proxy: {
    "/emr-server/v1/patient/**": {
      target: process.env.PP_SERVER || "http://pp-server:8080",
      logLevel: "debug",
      pathRewrite: {
        "^/emr-server/v1/patient": "/v1/patient",
      },
    },
    "/emr-server/**": {
      // target: "http://10.1.62.120:8085",
      target: process.env.EMR_SERVER || "http://10.1.62.120:8085",
      logLevel: "debug",
    },
  },
window.open()token`
Sep.30,2021

for more information, please refer to Link description
http-proxy-middleware to provide methods

option.onProxyReq: function, subscribe to http-proxy's proxyReq event.

function onProxyReq(proxyReq, req, res) {
    // add custom header to request
    proxyReq.setHeader('x-added', 'foobar');
    // or log the req
} 
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b2b181-2b2bd.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b2b181-2b2bd.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?