(feature)(webapp) modify model to view (#719)

This commit is contained in:
williamhliu
2024-02-04 20:58:33 +08:00
committed by GitHub
parent da5e7b9b75
commit e801c448be
17 changed files with 67 additions and 145 deletions

View File

@@ -1,6 +1,6 @@
const { createProxyMiddleware } = require('http-proxy-middleware');
module.exports = function(app) {
module.exports = function (app) {
app.use(
'/api',
createProxyMiddleware({
@@ -15,4 +15,4 @@ module.exports = function(app) {
changeOrigin: true,
})
);
};
};