How does gulp+browser-sync represent multiple addresses

how does gulp+browser-sync proxy multiple addresses

for example:

gulp.task("browserSync",function() {
    const aipProxy = proxy("/api", {
        target: "http://192.168.x.x:8080",
        changeOrigin: true,
        pathRewrite: {
            "^/api": "/",  //rewrite,
        }
    });
    browserSync.init({
        server: {
            baseDir: "app",
            middleware:[aipProxy],
            index: "index.html"
        },
        host:"localhost",
        port:7777,
    });
});

now I want to add a proxy address.

Mar.20,2021
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-1b35fac-2b823.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-1b35fac-2b823.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?