kafka acl user search and show list

This commit is contained in:
许晓东
2021-09-01 16:23:30 +08:00
parent 5d0b85ef45
commit aeab25939d
13 changed files with 537 additions and 203 deletions

14
ui/vue.config.js Normal file
View File

@@ -0,0 +1,14 @@
module.exports = {
productionSourceMap: process.env.NODE_ENV !== "production",
devServer: {
proxy: {
"/kafka-console": {
target: `${process.env.SW_PROXY_TARGET || "http://127.0.0.1:7766"}`,
changeOrigin: true,
// pathRewrite: {
// '^/kafka-console': '/'
// }
},
},
},
};